Reputation: 375
I'm going to start an new application with MVC Web API. Api should communicate with DB. Data base is not yet designed, but this DB will communicate with more then one application. So which way I have to choose.
Upvotes: 1
Views: 367
Reputation: 17033
Code first is a good chooice for you, for the following reasons:
Other info:
The image is copyied from: http://www.entityframeworktutorial.net/choosing-development-approach-with-entity-framework.aspx
Upvotes: 3