ADO.NET entity data model (.edmx) in ASP.NET MVC core 1.0

后端 未结 3 1634
Happy的楠姐
Happy的楠姐 2020-12-11 13:59

I have couple of questions regarding how to use ADO.NET entity data model (.edmx) in ASP.NET MVC core 1.0 application-

  1. As we are migrating application from

3条回答
  •  北海茫月
    2020-12-11 14:38

    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

提交回复
热议问题