How similiar are the implementations of hibernate and nhibernate?
i.e. if I am comfortable with nhibernate, will hibernate be a very easy transition?
How similiar are the implementations of hibernate and nhibernate?
i.e. if I am comfortable with nhibernate, will hibernate be a very easy transition?
I've used Hibernate a lot and read up on NHibernate, and as far as the basics go, they appear very similar.
session.Save(user)
vs. session.save(user)
).