I have a .NET MVC solution which has got the following projects:
- Website - ASP.NET MVC
- Core - Services/Data access [UoW, Repository, EF dbcontext]
- Database - Visual studio database project (allowing to compare the schema, generate scripts, add pre/post deployment scripts, produces dacpac upon project build)
I am developing/modifying some features and this requires database activities like: table creation/deletion/add column/remove column.
The Core project also has got an edmx file which is the EF data context. I have prior work experience with .NET core based database first projects where-in I would make the db change via SQL management studio and then execute the following command to update the db context Scaffold-DbContext ...
.
In a non-.NET core project what is the process to update the edmx?