views:

226

answers:

1

Hi guys do any of you working on a large enterprise or web application what uses Nhibernate as an ORM tool ,I interested to know about your experience ? Or maybe you have a link for such an example ?

+2  A: 

We're using it on my current project ... n-tier solution with composite application, WCF services running on load-balanced hardware and databases replicated to multiple data centres for global distribution and DR. So it's definitely an enterprise scale application.

My advice is really pretty obvious - NHibernate is not trivial, it has lots of functionality, so take the time to learn it properly. Make sure you know what it's capable of doing (e.g. I only discovered recently how to map a computed / trigger-generated column) because otherwise you'll spend time implementing workarounds for problems that don't really exist.

John Rayner