Hi, I have a DB schema with multiple m:n relationship which are represented as separate tables, e.g. Employee(eid, ename) Project(pid, pname) and WorksFor(eid,pid) WorksFor is the table representing the many-to-many relationship between Employee and Project. I have created a Linq data model for this...