1

今天我将我的项目更新到 NHibernate 3.3 并替换了 NHibernate 和 Iesi.Collections 参考。

我保留了 NHibernate.ByteCode.Castle 我 <property name="proxyfactory.factory_class">NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle</property>从我的应用程序配置中删除了该行。现在我在以下代码的最后一行收到错误 NotSupportedException:

NHibernate.Cfg.Configuration cfg = new NHibernate.Cfg.Configuration();
cfg.AddAssembly(Assembly.GetExecutingAssembly());
sessionFactory = cfg.BuildSessionFactory();

我用谷歌搜索了很多,但我不知道出了什么问题。和想法?谢谢!

我的配置:

  <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory>
  <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
  <property name="dialect">NHibernate.Dialect.PostgreSQLDialect</property>
  <property name="connection.driver_class">NHibernate.Driver.NpgsqlDriver</property>
  <property name="connection.connection_string">Server=myserverip;Port=myport;database=my_test;User Id=my_user;Password=mypwd;CommandTimeout=1;</property>
  <!--<property name="proxyfactory.factory_class">NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle</property>-->
  <property name="command_timeout">0</property>
</session-factory>

4

1 回答 1

3

只需将此行添加到您的 xml 配置中

<property name="hbm2ddl.keywords">none</property>

此处描述的更多详细信息: C#/Postgres/FluentNHibernate:配置 npgsql 抛出 NotSupportedException

于 2012-11-06T11:54:08.960 回答