Top "Nhibernate" questions

NHibernate is an open source object-relational mapper (ORM) for the .NET framework.

Entity Framework 4 vs NHibernate

A lot has been talked about Entity Framework first version on the web (also on stackoverflow) and it is clear …

.net nhibernate entity-framework orm
What is the difference between JoinQueryOver and JoinAlias?

I need to know what is the difference between JoinQueryOver and JoinAlias, and when to use each?

nhibernate queryover
How do I view the SQL that is generated by nHibernate?

How do I view the SQL that is generated by nHibernate? version 1.2

nhibernate
Deciding between NHibernate vs Entity Framework?

What are the main advantages and disadvantages of NHibernate and Entity Framework 4.0? (While tagging my question, I've noticed more NHibernate …

nhibernate entity-framework orm
Inverse Attribute in NHibernate

How do I use the Inverse Attribute? If I am not mistaken, for one to many relationships the inverse attribute …

nhibernate nhibernate-mapping
Are there good reasons not to use an ORM?

During my apprenticeship, I have used NHibernate for some smaller projects which I mostly coded and designed on my own. …

c# nhibernate orm enterprise
Referencing 2 different versions of log4net in the same solution

I'm using NHibernate 2.1.2.400 that is referencing log4net 1.2.10.0. In the same project, I also use the simply accounting SDK, sadly …

.net nhibernate dll log4net
Update several Columns in one Hibernate Query?

i have the Following HQL: String hql = "UPDATE Buchung as b " + "set STORNO = :Storno " + "where ID = :BuchungID"; Is it possible …

hibernate nhibernate hql
Convert .NET Ticks to SQL Server DateTime

I am saving a TimeSpan (from .NET) value in my db as BIGINT in SQL Server (saving the Ticks property). …

sql-server-2005 nhibernate datetime timespan
What is the difference between NHibernate Query<> vs QueryOver<>?

I just started with NHibernate (using SQLite) in my current project and I mostly used Query<>, because I …

c# nhibernate