I have couple of questions regarding how to use ADO.NET entity data model (.edmx) in ASP.NET MVC core 1.0 application-
As we are migrating application from
As the other answers have alluded to, there is no support for EDMX. You will need to regenerate your ED models from the data using the new dotnet scaffold
command line utility. You can also use that command to scaffold incremental changes to the database.
Check out the documentation for "dotnet" (you might also be interested in migrations` once you move away from EDMX).
Scaffold Command Documentation