Reputation: 33071
I'm starting a new project and the client wants to use the Entity Framework for their business layer. They are currently using .NET Framework 3.5. Would it be worth it to upgrade to 4.0 for the Entity Framework? What are the significant changes between the two versions?
Upvotes: 7
Views: 5359
Reputation: 14531
Entity 4.0 supports POCO (Plain Old CLR Objects), which is a big plus if you do model-first (as opposed to database-first) development such as Domain Driven Design.
Here is an article that compares Entity 1.0 to 4.0. Regarding 4.0, it states (and discuses) the following new features:
Upvotes: 9