I have a simple many-to-many relationship in my database:
Users --> UserRoles <-- Roles
When adding these to my EDMX file the junction table is being displayed and the relationships are not being shown.
Are there any special settings that might prevent the navigation settings from being displayed?
As is often the case I have found my own answer. In our case we had set some security settings on the columns that prevented the mapping (don’t know how). Removed the security that wasn’t needed then the navigation props appeared as expected.
HTH