De eigenschap die u moet instellen, is "adonet.factory_class" aanroepen. Gebruik een van de volgende opties:
<property name="adonet.factory_class">assembly-qualified-name</property>
of
configuration.SetProperty(
Environment.BatchStrategy,
typeof(MySqlClientBatchingBatcherFactory).AssemblyQualifiedName);
of zoals vermeld in het leesmij-bestand van de batcher zelf (https://github.com/Andorbal/NHibernate.MySQLBatcher):
config.DataBaseIntegration(db =>
db.Batcher<MySqlClientBatchingBatcherFactory>());