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.

link|improve this question

71% accept rate
11  
You ask the question as though you have a choice between them. Hibernate is for Java, NHibernate is for .NET – Andrew Bullock Jun 3 '09 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 '09 at 21:48
See update, I am NOT trying to decide between them. – ripper234 Jun 3 '09 at 21:56
4  
You might want to change the title cuz using 'versus' is controversial. – victor hugo Jun 3 '09 at 22:00
1  
My downvote was because while I think the core question is very interesting it is phrased in a way that I doubt will elicit in depth (and therefore interesting) answers. A wasted opportunity... – CurtainDog Jun 4 '09 at 11:49
show 2 more comments
feedback

5 Answers

up vote 28 down vote accepted

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|improve this answer
feedback

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|improve this answer
beware the linq2nhibernate library, its a bit lacking and is currently being rewritten. its good for simple things though – Andrew Bullock Jun 3 '09 at 21:38
feedback

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|improve this answer
feedback

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

link|improve this answer
Or DataNucleus www.datanucleus.org – Chris Kaminski Jun 4 '09 at 2:41
feedback

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

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.