Reputation: 504
I noticed that this type of project does not support files edmx. What is the right way to develop a project in Asp.net 5 MVC 6 using Entity Framwork 7?
Upvotes: 1
Views: 3184
Reputation: 504
The problem is that EF7 kill EDMX. You now have Code First-style POCOs tied to an existing database, without an EDMX file in sight. The EF Power Tools Visual Studio extension can be installed to generate all of this directly from existing database.EF Power Tools Visual Studio extension actually doesn't support vs 2015
Upvotes: 0
Reputation: 789
Currently(as of EF 7, RC1) Database First support is still in development. More info on roadmap page here and on EF Design meeting notes here.
Since this is in development there are ways to try this and more info and tutorial on commands can be found at official documentation page here.
Upvotes: 1