What are the pros & cons of using Entity Framework 4.1 Code-first over Model/Database-first with EDMX diagram?

I'm trying to fully understand all the approaches to building data access layer using EF 4.1. I'm using Repository pattern and IoC.

I know I can use code-first approach: define my entities and context by hand and use ModelBuilder to fine-tune the schema.

I can also create an EDMX diagram and choose a code generation step that uses T4 templates to generate the same POCO classes.

In both cases I end up with POCO object which are ORM agnostic and context that derives from DbContext.

Database-first seems to be most appealing since I can design database in Enterprise Manager, quickly synch the model and fine-tune it using the designer.

So what is the difference between those two approaches? Is it just about the preference VS2010 vs Enterprise Manager?

link|improve this question

feedback

4 Answers

up vote 126 down vote accepted

I think the differences are:

Code first

  • Very popular because hardcore programmers don't like any kind of designers and defining mapping in EDMX xml is too complex.
  • Full control over the code (no autogenerated code which is hard to modify).
  • General expectation is that you do not bother with DB. DB is just a storage with no logic. EF will handle creation and you don't want to know how it do the job.
  • Manual changes to database will be most probably lost because your code defines the database.

Database first

  • Very popular if you have DB designed by DBAs, developed separately or if you have existing DB.
  • You will let EF create entities for you and after modification of mapping you will generate POCO entities.
  • If you want additional features in POCO entities you must either T4 modify template or use partial classes.
  • Manual changes to the database are possible because the database defines your domain model. You can always update model from database (this feature works quite good).
  • I often use this together VS Database projects (only Premium and Ultimate version).

Model first

  • IMHO popular if you are designer fan (= you don't like writing code or SQL).
  • You will "draw" your model and let workflow to generate your database script and T4 template to generate yout POCO entities. You will lose part of control on both your entities and database but for small easy projects you will be very productive.
  • If you want additional features in POCO entities you must either T4 modify template or use partial classes.
  • Manual changes to database will be most probably lost because your model defines the database. This works better if you have Database generation power pack installed. It will allow you updating database schema (instead of recreating) or updating database projects in VS.

I expect that in case of EF 4.1 there are several other features related to Code First vs. Model/Database first. Fluent API used in Code first doesn't offer all features of EDMX. I expect that features like stored procedures mapping, query views, defining views etc. works when using Model/Database first and DbContext (I didn't try it yet) but they don't in Code first.

link|improve this answer
@Ladislav - thank you for the comprehensive answer. Just to clarify: except for some limitations of fluent API there are no real technical differences between those approaches? It's more about development/deployment process/methodology? For example, I have separate enviroments for Dev/Test/Beta/Prod and I will upgrade database manually on Beta/Prod as changes to the schema might require some complex data modifications. With Dev/Test I'm happy for EF to drop&create databases as I will seed them with test data myself in the initializers. – Jakub Konecki Mar 27 '11 at 9:00
@Jakub: There are no differences. Those are only differen approaches to work with the same EF core. It is like configuring IoC in config, by attributes or with fluent API - still the same result but different approaches and some limitations in each used approach. Check this question: stackoverflow.com/questions/5433318/… There some good ideas how to solve the issue with different environments. – Ladislav Mrnka Mar 27 '11 at 11:53
@Ladislav - Thanks! I've already solved the problem with different environments by supplying different initializers based on config which I transform in MSBuild. I'm implementing UnitOfWork pattern right now and hopefully all should be working fine. PS. Although code-first is more 'cool' I've opted for database-first, as I want more control over DB and model generation saves me from writing some code. PPS. I also started thinking about creating entity-framework-ladislav tag ;-) – Jakub Konecki Mar 27 '11 at 13:57
6  
I've been designing databases for so long I can't seem to imagine ever doing anything but database first. In fact, I still write a lot of stored procedures for the more high volume select statements and such, and then I'll do a function import into the EF model all in the name of performance. – Steve Wortham Jun 14 '11 at 14:36
1  
@JakubKonecki, whatever you don't find in the DbContext that exist in ObjectContext simply use ((IObjectContextAdapter)dbcontext).ObjectContext. – Shimmy Mar 12 at 5:13
show 8 more comments
feedback

Database first and model first has no real differences. Generated code are the same and you can combine this approaches. For example, you can create database using designer, than you can alter database using sql script and update your model.

When you using code first you can't alter model without recreation database and losing all data. IMHO, this limitation is very strict and does not allow to use code first in production. This will be addressed in upcoming Microsoft Code First Migrations. But for now it is not truly usable.

Second minor disadvantage of code first is that model builder require privileges on master database. This doesn't affect you if you using SQL Server Compact database or if you control database server.

Advantage of code first is very clean and simple code. You have full control of this code and can easily modify and use it as your view model.

I can recommend to use code first approach when you creating simple standalone application without versioning and using model\database first in projects that requires modification in production.

link|improve this answer
feedback

Working with large models were very slow before the SP1, (have not tried it after the SP1, but it is said that is a snap now).

I still Design my tables first, then an in-house built tool generates the POCOs for me, so it takes the burden of doing repetitive tasks for each poco object.

when you are using source control systems, you can easily follow the history of your POCOs, it is not that easy with designer generated code.

I have a base for my POCO, which makes a lot of things quite easy.

I have views for all of my tables, each base view brings basic info for my foreign keys and my view POCOs derive from my POCO classes, which is quite usefull again.

And finally I dont like designers.

link|improve this answer
6  
'when you are using source control systems, you can easily follow the history of your POCOs, it is not that easy with designer generated code.' - I keep designer generated code in Source Control, so I can always view history. – Jakub Konecki Apr 1 '11 at 8:37
feedback

Database first approach example:

Without writing any code: ASP.NET MVC / MVC3 Database First Approach / Database first

And I think it is better than other approaches because data loss is less with this approach.

link|improve this answer
Could you elaborate on there being 'less data loss' with DB first approach? How would you perform data transformation if you were to split existing table into two? – Jakub Konecki Mar 10 at 9:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.