Where is the EDMX

2019-02-16 15:00发布

Getting exposed to dotnet Core. In a sample test application trying to setup EntityFramework.Core in dotnet core app. While I was able to add the EntityFramework.Core NugGet package I can't find the 'Add'->'New Item'->'Data'->'ADO.NET Entity Data Model'

Is this not possible with EntityFramework.Core?

How does EntityFramework.Core differ from EntityFramework 7?

1条回答
老娘就宠你
2楼-- · 2019-02-16 15:09

There is no edmx support in Entity Framework Core. It only supports a code-first approach. The option to add a new Entity Data Model will be added, but it will produce entity class files instead of an edmx file. The tooling development is a little bit behind the framework development currently.

查看更多
登录 后发表回答