vote up 5 vote down star

How does Hibernate compare to NHibernate?

I've heard the claim that "Hibernate is much worse than NHibernate, even to the point of not using it (and using JDBC over it)". Can anyone support or refute this?

Update - I am not trying to decide between them. Our DAL team decided to use NHibernate for our .Net side, but not use Hibernate on the java side because "it is not good enough". Me being a newb to ORM, I'm trying to understand what are the differences.

Specifically, we are using Fluent NHibernate.

flag

63% accept rate
7  
You ask the question as though you have a choice between them. Hibernate is for Java, NHibernate is for .NET – Andrew Bullock Jun 3 at 21:33
I have have philosophical issues with ORMs but, like many others, I have used Hibernate successfully in the past. – CurtainDog Jun 3 at 21:48
See update, I am NOT trying to decide between them. – ripper234 Jun 3 at 21:56
Wow, this is a really controversial question. So far I got 3 down votes and 2 up votes. I'm not sure why the downvotes though... – ripper234 Jun 3 at 21:57
3  
You might want to change the title cuz using 'versus' is controversial. – victor hugo Jun 3 at 22:00
show 2 more comments

5 Answers

vote up 13 vote down check

This claim is ridiculous. Hibernate was originally designed for Java and then ported to .NET. Hibernate is the most prominent ORM tool in Java today and it is highly acclaimed by developers. It is also an award winning framework.

link|flag
vote up 0 vote down

Always be dubious of claims that "A is worse than B" that aren't backed up by numbers and/or evidence.

link|flag
vote up 1 vote down

If you're like me and don't like the way Hibernate does business, you might try using iBatis. http://ibatis.apache.org/

link|flag
Or DataNucleus www.datanucleus.org – Chris Kaminski Jun 4 at 2:41
vote up 3 vote down

I would seriously question this comment.

Granted, Hibernate has a wealth of features, that require some investigation to understand fully. I would suggest that whoever made this comment has not read Java Persistence with Hibernate, which is a great reference.

It's also interesting to note that Grails uses Hibernate under the covers.

link|flag
vote up 7 vote down

NHibernate is a port of hibernate which is java over to .Net,

Currently NHibernate is only a subset of Hibernate but it is quickly catching up.

I think the two are comparable for the most part it's only the more advanced features which are different.

NHibernate has things like Linq based configuration which I don't think hibernate has an equivalent.

Ayende Rahien is probably the best person to answer this question he was one of the principal members of the nhibernate team. His blog is here

link|flag
beware the linq2nhibernate library, its a bit lacking and is currently being rewritten. its good for simple things though – Andrew Bullock Jun 3 at 21:38

Your Answer

Get an OpenID
or

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