I am new to linqtosql. I have a database schema where,
An employee can belong to more than one team and team can belong to more than one employee.
So actually I have a,
Employee table: EmpID(PK),EmpName, etc..
EmployeesTeam table: EmpID(FK),TeamID(FK) (These two make composite PK)
Team table: TeamID(PK),TeamName,etc
I added rows to Employee and Team tables, but I dont know how can I add rows to the EmployeesTeam table.