Reputation: 7490
I am using Visual Studio 2010
and want to use EF Code First
as ORM
. I cant find that template in Entity Data Model Wizard
as it is in this thread. Yes, I installed Nuget Package Manager
and Entity Framework 6.2
for my project. Can't I use code first approach in my project? what is there to be additionally installed?
Upvotes: 0
Views: 470
Reputation: 18181
The Entity Data Model Wizard refers to model first, if you want to use code first, then you will design your POCO classes firstly, and use your classes to generate database for you. HTH.
Upvotes: 1