I'm working on a little project in which we have a table of engineers, a table of projects, and a table of elements. engineers are assigned multiple elements, and elements can have multiple projects. I was just wondering how I would go about showing all the elements a engineer is apart of.
Currently, I have a table created that associates a engineer with a element. it looks a little like this:
[Engineer Elements]
[Engineer ID][Element ID]
[1] [2]
[1] [4]
[2] [2]
[2] [8]
So I do have a way to link the two tables. Could push me into the right direction on learning a bit more on linking these tables together using MVC?