A lot has been talked about Entity Framework first version on the web (also on stackoverflow) and it is clear that it was not a good choice when we already have better alternative like NHibernate. But I can't find a good comparison of Entity Framework 4 and NHibernate. We can say that today NHibernate is the leader among all .NET ORMs, but can we expect Entity Framework 4 to displace NHibernate from this position. I think if Microsoft has really injected very good features in EF4 it can give good competition to NHibernate as it has Visual Studio integration, easier to work with and preference is always given to MS products in most shops.

link|improve this question

5  
I'd like an update of this comparison. Has much happened since '09? – Phil Sep 7 '11 at 8:05
feedback

8 Answers

up vote 44 down vote accepted

EF4 has an out-the-box answer with regard to n-tier development, in "self-tracking entities". Nobody has released comparable code for NHib.

NHib has many features that have not been mentioned as being part of EF4. These include the second-level cache integration. It also has greater flexibility in inheritance mapping, better integration with stored procs / database functions / custom SQL / triggers, support for formula properties and so on. IMO it's basically just more mature as an ORM.

link|improve this answer
11  
+1 You're right. NH is just mature. EF will catch up by the end of the year. Version 4.0 has already made a dramatic entrance. Give it some time and it'll be bullet-proof by mid 2011. – Sergey Jan 18 '10 at 7:57
10  
-1 For "EF4 has an out-the-box answer with regard to n-tier development, in "self-tracking entities". Nobody has released comparable code for NHib." There is ISession.Merge in NHibernate which is a lot better then Self-Tracking entities for N-Tier developement for many reasons. – Alex Burtsev Jan 18 '11 at 5:10
9  
@Alex - In what way is NHibernate an "out of the box" solution? Just to clarify; "Out of the box" means that it works with a vanilla install of Visual Studio. That's an unjustified -1 right there. – DoctaJonez Feb 22 '11 at 12:17
5  
@DoctaJonez - The way I read it, Alex was contesting the idea that NH has nothing comparable to self-tracking entities, not the part about it being "out of the box". – Jerph Mar 30 '11 at 5:41
2  
Actually, I have discovered that EF4 has more flexible inheritance mapping. For instance, you can use 2 tables (TPT) as base class + level 1 class and add discriminator to level 1 table, allowing spliting to level 2 classes. In NH, discriminator can only be defined on base class. – Danny Varod May 18 '11 at 18:25
show 2 more comments
feedback

Here's the thing. NHibernate and Entity Framework are really for two different audiences, in my mind. NHibernate would be my choice in building a system with complex mappings, formulas, and constraints (basically anything enterprise). If I wanted to hit-the-ground running with simple data access, I would use Entity Framework or LINQ-to-SQL. NHibernate doesn't have a clear "drag-and-drop" experience quite like EF. Both have their strengths and drawbacks. Comparing them apples-to-apples, frankly, gets you nowhere.

link|improve this answer
11  
Have you tried ActiveWriter? Entity Framework is absolutely targeted at the enterprise space. I disagree with most of what you said. – Michael Maddox Oct 29 '09 at 9:34
1  
Disagree all you want but the fact that NHibernate has been around longer is something enterprises DO NOT overlook. – zowens Oct 29 '09 at 17:37
1  
What is ActiveWriter, I have never heard about this? – Deependra Solanky Oct 29 '09 at 18:22
14  
-1 This is not a good comparison of NHibernate vs. Entity Framework. Comparing the two by lumping EF in with LINQ to SQL just b/c it has drag-and-drop is disingenuous at best. As far as complexity, what exactly is it that NHibernate can do that EF 4 can't? – Kevin Babcock Oct 30 '09 at 14:16
12  
Second Level Caching, their queries are HIGHLY optimized, NH forces you to use the UnitOfWork pattern, plus mappings aren't jammed into one file. My opinion (from experience) is that NHibernate is more performant. Disagree with me on that, but I did say that was my opinion. My point in my answer is STILL valid, they BOTH have their strengths and weaknesses. No one can deny that. – zowens Oct 30 '09 at 14:29
show 2 more comments
feedback

If you think you might ever want to run your code on Mono, NHibernate is probably a better choice no matter what the feature checklists say...

link|improve this answer
Indeed, from mono-project.com/Compatibility it reads "EntityFrameworks - Not available.", and looks like no one is interested in implementing it. So at least for a few years, it's NHibernate or nothing. – user276648 Apr 29 '11 at 10:48
feedback

I think the fact that EF 4 will have the ability to use POCO and deferred lazy loading will be very big. I could definitely see it gaining traction with the new release.

link|improve this answer
7  
Don't forget LINQ support. NHibernate still ain't good at it. – Arnis L. Oct 28 '09 at 23:35
1  
@Arnis, can you provide any links to back that opinion up? – Michael Maddox Oct 29 '09 at 9:36
2  
@Michael this is apparent when you look through Ayande's blog posts on the subject. LINQ to NH is based on the criteria API at present. The criteria API doesn't allow some of the more complex query functions that HQL can. The next release of LINQ to NH will use HQL instead of criteria API. – zowens Oct 29 '09 at 17:42
feedback

There's a good discussion over at Ayende's blog: http://ayende.com/Blog/archive/2009/10/14/what-is-up-with-the-entity-framework-vnext.aspx

link|improve this answer
10  
There's a good 'biased' discussion. With this sort of question, you have to take the source of your information into account. – mattmc3 Oct 10 '10 at 19:37
feedback

My take on this is that EF4.0 has came a long way since 1.0 and is catching up to Nhibernate in functionality, but it's not all there yet.

However it is Microsoft, out of the box, and do 100% of what 95% of applications need it to do. However, NHibernate has been doing the same thing for years. Come version 5.0 or 6.0 may catch up, or even surpass NHibernate.

Here is my advice -- if you have time to learn both, then do it. There are several reasons to choose one over the other. If you are writing code for a corporation, it is realistic to expect to be able employees who would be familiar with EF, as it's in all the books and what kids learn in college. If EF will meet your requirements (think about this one long and hard before just saying yes), then it's a perfectly fine solution for now, and in a few years it may (ok, most likely will) surpass NHibernate.

NHibernate is a very mature product with a few years on EF and will most likely do everything you would ever want to do and then some. It has been the best ORM for a while now and a lot of people use it.

link|improve this answer
feedback

My 2 cents: we use ef on our desktop client for some cahing etc - no hi loads. An NHib on server side - utilizing Stateless sessions, hilo id generation and batches. Is is quite fast in inserting 3k+messages in db per second. Also it is very flexible and supports lots of dbs, wich is crucial for our product.

link|improve this answer
feedback

Mapping directly to stored procedures with a combination of Linq for a logical layer seems the easiest approach. No xml. Generate sql only for interesting queries that are less frequently used or not suitable for stored procedures.

Objects load and store through standard SPs. This approach allows the use of two sql logins. One for the class access through SPs (execute-only permissions) and one for a logical linq module that allows direct table access.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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