Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Entity Framework and Code First Development

Microsoft releases Entity Framework 4.0 and in it developers can do Code First Development. This is fine and thanks to Microsoft.

I have one confution about code first development. I have worked on Entity Framework in ASP.NET 3.5 SP1 and Visual Studio 2008 SP1. In that we create a database schema and from that we create Entity Data Model. That means we are creating our class model from database. I think this is called data first development.

But when we create Entity Data Model in Entity Framework 3.5 SP1 then there are two options. First is Generate from existing database and another is create a blank model. Suppose I create a blank model and then map it to the database. So we first develop the class models without thinking the database schema and then map it with database. My confution is, is it called code first deveopment? Then why the community people and books are saying that 'It is not possible to impliment code first development in Entity Framework 3.5 SP1'?

To solve my confution I need your help. So please give reply on this post.

Thank you.

like image 748
Arnab Roy Chowdhury Avatar asked Nov 29 '11 11:11

Arnab Roy Chowdhury


1 Answers

Code First is availabe since Entity Framework 4.x. So you cant generate a Database from your Code Model in 3.5 SP1.

Basicly there are 3 Types:

  1. Database First (the Database already exists, you create the edmx from that using the Wizard)
  2. Model First (you create a Database Model using the Designer, Entity Framework gerenates a Database from that)
  3. Code First (your create your Code, Entity Framework creates a Database from that)

More Informations: Code-First Development with Entity Framework 4

like image 61
dknaack Avatar answered Sep 28 '22 00:09

dknaack