I need to apply batch sizing to my NHibernate Sessions. I am using MySQL.
After finding out, that NHibernate doesn't natively support batch sizing for MySQL I installed this package:
http://www.nuget.org/packages/NHibernate.MySQLBatcher
which contains a batcher for MySQL.
Then I was searching for the point where I can inject the batcher and found this:
Why doesn't NHibernate support batching on MySql
According to the accepted answer I don't find something like this DataBaseIntegration() method.
Has anyone got through this before?