I have many-to-many relationship between Projects and Models in my database
I am using this command to generate the .cs models:
Scaffold-DbContext "my connection string here" Microsoft.EntityFrameworkCore.SqlServer -OutputDir EFModels -Force -Context EFEntities -Tables Projects, Projects_Models, Models
In EF6, this would create Project.Models and Model.Projects properties, without mapping the Projects_Models table into its own class.
But in this case (EF Core), it created a ProjectsModel class, and Project.ProjectsModels and Model.ProjectsModels properties instead.
How can you make it behave like it was in EF6?
