我正在从NHibernate 2.1迁移到Nhibernate 3.3。请允许任何人简要地告诉我这样做的步骤。 以下是我在当前项目中使用的DLL
是否还需要更改Fluent Hibernate配置中的代码?以下是代码。
if (_config == null)
{
_config = Fluently.Configure()
.Database(MsSqlConfiguration.MsSql2008
.ConnectionString(cs => cs.Is(ConnectionString))
.AdoNetBatchSize(2000)
.Raw("command_timeout", "600")
.ProxyFactoryFactory("NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle")
.ShowSql()
)
.
.
.
}
请告诉我要删除/升级的DLL以及Fluent NHibernate代码中的更改(如果有)。
答案 0 :(得分:1)
.ProxyFactoryFactory()
应该被删除