Nhibernate使用中遇到的问题

错误信息:

Hibernate.ByteCode.Castle.dll —> System.IO.FileLoadException: Could not load file or assembly ‘NHibernate, Version=3.1.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4′ or one of its dependencies. The located assembly’s manifest definition does not match the assembly reference.

这是Nhibernate3.2以后,nh提供了自己的proxy, 自己的bytecode,不需要引用 Hibernate.ByteCode.Castle.dll, 跟 Castle.Core.dll 了。

新的 proxyfactory.factory_class 的设置方法:

<property name=”proxyfactory.factory_class”>NHibernate.Bytecode.DefaultProxyFactoryFactory, NHibernate</property>

按教程配出来了hbm.xml, 写出Entity类,配好数据库的连接,Run一下,一直报

Unable to locate persister for the entity named

后来终于发现是hibernate.cfg.xml中未加上这一行

<mapping assembly="nhibernateSample" />

郁闷啊,这个是从nhibernate的目录中拷过来的啊,教程中也完全没有提到这回事。。。。

原文地址:https://www.cnblogs.com/Daywei/p/2848124.html