I'm designing a very simple database for my application and it's configured like this:
Employee
Carnet
Name
LastName
Area
Name
Document
ID
Employee (FK)
Project (FK)
Project
ID
Company (FK)
Title
Company
Name
CEO (FK)
NIT
Person
Carnet
Name
Lastname
Now the gist of this question is, an Area can have many Document; and a Document can belong to many Area.
This I'm told, creates a third relationship table, correct?
What would go in that table and would this be able to work if I'm going to be using Linq-to-SQL as the only tool for accessing my database.