There are scenarios in which NHibernate performance decrease even if we do all the effort to correctly use it. This could happen if we
need in some circumstances to load a lot of record ( I explicitly use record instead of ‘Entity’ ) from some relational structures, and doing this the OR/M way
means overload the session with a lot of entities, that is painful in term of speed. Other cases happens when we need to write or update something that is not properly
represented in the entity model we have, maybe because the model is more “read” oriented. Other cases? I’m not able to grasp all of course, but I’m sure that you face
some if you use an OR/M ( not necessarily NH ) in your daily basis. Using NHibernate an alternative could be using FlushMode=Never in session, but you
still have all the OR/M plumbing in the hydrating entity code that negatively impacts the performances. I obtained impressive results in solving such a situation,
by using Dapper, a so called single file OR/M. It is a single file that provider some IDbConnection extension
methods, those methods works on an already opened connection, so we can use the connection sticked to the NHibernate open session, as here below:
session.Connection.Query<MyDto>("select Name=t.Name,Mail=t.Mail " +
"from mytable t where t.Valid=@Valid",new{Valid=true});
you obtain back a big recordset of MyDto instances in almost the same time if you wire by hand a DateReader vertical on the dto, with all the error checking.
So why don’t use it always?
Because despite the name Dapper is not an OR/M, it does not keep track of modified entities, it does not help you in paginating results or lazy load the entity graph,
neither helps in porting from one SQL dialect to another.
Is this strategy used somewhere else?
You probably find interesting to read this
post by Sam Saffron, this solution is used in Stackoverflow.com combined with the LinqToSql OR/M to help when
the OR/M performance are not enough.
By my test I experienced a performance increase of 10x in a very hacking situation, but I can’t show the case since it is not public code. Something
more scientific about performance is here.