I play with Entity Framework 7 and ASP.NET 5 for a new project that I am working on, but I hit the road block. The team I'm working on uses the first DBA development approach; those. The database is designed by the database administrator, and then the developers modify the code to compensate for model changes.
Using EF6, this works well, as we can simply update the code using the EDMX update functionality. One click, we get new classes, and you're done. However, in EF7 everything is different. There is no longer a designer there, and we should use Code-First, which, according to some blog posts posted by the EF team, should also support the generation of Database-First code.
However, I cannot figure out how to do this using Visual Studio 2015 CTP6 in an ASP.NET 5 application. Is there toolkit support there, or am I out of luck? And will it even come at all?
c # sql-server asp.net-core entity-framework-core
Ron Penton Mar 27 '15 at 12:33 2015-03-27 12:33
source share