Explicit many for many connections in Entity Framework 4

By default, EF hides a table with many for many, which does not contain additional data than foreign keys to joined tables.

Is it possible to tell EF (and the constructor) to explicitly create a connection table and make it suitable for use in code?

thank

+5
source share
1 answer

EF Designer will not add this object for you. If you want to open the connection table, you must manually delete the created relation and add the component of the connection table and two one-to-many FK relationships. The following are related questions with a walkthrough:

+5

All Articles