You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 18, 2022. It is now read-only.
After I upgrade Nhibernate to version 5.0.0 and NHibernate.Caches.SysCache2, I get the error message
Method 'DoExecuteBatch' in type 'NHibernate.MySQLBatcher.MySqlClientBatchingBatcher' from assembly 'NHibernate.MySQLBatcher, Version=1.0.3.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
This is my code for this: var configure = new Configuration().Configure(); configure.DataBaseIntegration(x => { x.Dialect<MySQL5Dialect>(); x.ConnectionStringName = "db"; x.BatchSize = 20; x.Batcher<MySqlClientBatchingBatcherFactory>(); }) .Cache(x => x.UseQueryCache = true) .CurrentSessionContext<WebSessionContext>();
After I upgrade Nhibernate to version 5.0.0 and NHibernate.Caches.SysCache2, I get the error message
Method 'DoExecuteBatch' in type 'NHibernate.MySQLBatcher.MySqlClientBatchingBatcher' from assembly 'NHibernate.MySQLBatcher, Version=1.0.3.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.This is my code for this:
var configure = new Configuration().Configure(); configure.DataBaseIntegration(x => { x.Dialect<MySQL5Dialect>(); x.ConnectionStringName = "db"; x.BatchSize = 20; x.Batcher<MySqlClientBatchingBatcherFactory>(); }) .Cache(x => x.UseQueryCache = true) .CurrentSessionContext<WebSessionContext>();How can I fix this?