When I create a model using the "Database First" approach in my ASP.NET MVC 5 project, not all my tables from SQL Server are created in my project.
I've followed everything in this article step by step: https://www.asp.net/mvc/overview/getting-started/database-first-development/creating-the-web-application
ASP.NET MVC Project Model:
SQL Server Database:
There are three tables from my SQL Server database that haven't been created in the model. The table are AspNetUserRoles, ContactsAddresses, and IssuesItems
Here are the designs for the three missing tables:
AspNetUserRoles:
ContactsAddresses:
IssuesItems:
All three of the missing tables were created in SQL Server to eliminate many to many relationships and they all have two primary keys that connect two tables.
Why is this happening and what can I do to fix it?
Thank you.




