Reputation: 3614
I'm not sure if this is a bug or a feature of Entity Framework.
I created 2 tables without Ids. I don't see these tables in my diagram but if I try remove all tables, Visual Studio shows me the table names.
Upvotes: 1
Views: 179
Reputation: 127603
If you have a many to many relationship that relationship is modeled in the database by using a table to do the mappings between the two tables. It is likely your table was turned in to one of those "look up" tables.
So something like this
Turns in to this
Upvotes: 4