I have the following tables in my edmx :
Errors
Id, Description, solved, officeId, siteId
Sites
id, location, name , officeId
Offices
officeId, officeName
the mapping between offices to sites are 1-to-many(offices can have many instances of sites).
i want to create many-to-many association from Errors to Sites so i can access Sites properties directly. I always keeps error in mapping. can someone guide me how to do it right?
thanks in advance