我不知道哪里出错。
我使用NHibernate C#并将Assembly附加到Configuration。 问题a NHibernateException:无法编译映射Note.hbm.xml
public static class NHibernateHelper
{
private static Configuration _cfg;
private static ISessionFactory _sessionFactory;
private static ISessionFactory SessionFactory {
get {
if (_sessionFactory == null) {
_cfg = new Configuration();
_cfg.Configure();
_cfg.AddAssembly(typeof(User).Assembly);
_cfg.AddAssembly(typeof(Changelog).Assembly);
_cfg.AddAssembly(typeof(Note).Assembly);
_sessionFactory = _cfg.BuildSessionFactory();
}
return _sessionFactory;
}
}
public static ISession OpenSession() {
return SessionFactory.OpenSession();
}
public static void DatabaseSchemaLoader() {
ISession session = OpenSession();
new SchemaExport(_cfg).Create(true, true);
session.Close();
}
}
我的Note类是shared.data.content
namespace CRMSystem.shared.data.content
{
public class Note
{
public virtual int id { get; set; }
public virtual string title{ get; set;}
public virtual string text { get; set; }
public virtual int priority { get; set; }
public virtual long createdTime { get; set; }
public virtual long lastEditTime { get; set; }
}
}
Note.hbm.xml(设置构建操作:嵌入资源,复制到输出:始终复制)
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
assembly="CRMSystem"
namespace="CRMSystem.shared.data.content">
<class name="Note" table="`Note`" lazy="false">
<id name="id" column="`id`" type="int">
<generator class="identity"></generator>
</id>
<property name="title" column="`title`" type="String"/>
<property name="text" column="`text`" type="String" />
<property name="priority" column="`priority`" type="int" />
<property name="createdTime" column="`createdTime`" type="long" />
<property name="lastEditTime" column="`lastEditTime`" type="long" />
</class>
</hibernate-mapping>
感谢您的回答。
我今天在很多方面都尝试过,并发现它有效:
_cfg.Configure();
_cfg.AddAssembly(typeof(User).Assembly);
//_cfg.AddAssembly(typeof(Changelog).Assembly);
//_cfg.AddAssembly(typeof(Note).Assembly);
当我添加:(任何课程)
_cfg.AddAssembly(typeof(Changelog).Assembly);
每次我都收到错误:无法编译Note.hbm.xml 我可以保存到每个类的数据库(User,Changelog,Note)。 我无法解释。
有没有人有这种情况?
完全例外:
NHibernate.MappingException: Could not compile the mapping document: CRMSystem.shared.data.mapping.Note.hbm.xml ---> NHibernate.DuplicateMappingException: Duplicate class/entity mapping CRMSystem.shared.data.content.Note
w NHibernate.Cfg.Mappings.AddClass(PersistentClass persistentClass)
w NHibernate.Cfg.XmlHbmBinding.RootClassBinder.Bind(HbmClass classSchema, IDictionary`2 inheritedMetas)
w NHibernate.Cfg.XmlHbmBinding.MappingRootBinder.AddRootClasses(HbmClass rootClass, IDictionary`2 inheritedMetas)
w NHibernate.Cfg.XmlHbmBinding.MappingRootBinder.AddEntitiesMappings(HbmMapping mappingSchema, IDictionary`2 inheritedMetas)
w NHibernate.Cfg.XmlHbmBinding.MappingRootBinder.Bind(HbmMapping mappingSchema)
w NHibernate.Cfg.Configuration.AddDeserializedMapping(HbmMapping mappingDocument, String documentFileName)
--- Koniec śladu stosu wyjątków wewnętrznych ---
w NHibernate.Cfg.Configuration.LogAndThrow(Exception exception)
w NHibernate.Cfg.Configuration.AddDeserializedMapping(HbmMapping mappingDocument, String documentFileName)
w NHibernate.Cfg.Configuration.AddValidatedDocument(NamedXmlDocument doc)
w NHibernate.Cfg.Configuration.ProcessMappingsQueue()
w NHibernate.Cfg.Configuration.AddDocumentThroughQueue(NamedXmlDocument document)
w NHibernate.Cfg.Configuration.AddXmlReader(XmlReader hbmReader, String name)
w NHibernate.Cfg.Configuration.AddInputStream(Stream xmlInputStream, String name)
w NHibernate.Cfg.Configuration.AddResource(String path, Assembly assembly)
w NHibernate.Cfg.Configuration.AddAssembly(Assembly assembly)
当我什么都没有添加时,我得到例外:没有持久性
答案 0 :(得分:1)
EXTEND
根据最新的更新,我们可以看到,NHiberante指责:
...重复的类/实体映射CRMSystem.shared.data.content.Note ...
这意味着,在我们的例子中,其他一些文件可能包含NOTE映射,例如在user.hbm.xml中可能存在一些遗忘的映射
<class name="Note" ...
ORIGINAL部分
代码可以,。我在本地尝试使用 Note
类和 Note.hbm.xml
。按预期工作。
问题似乎是一些拼写错误,我几乎无法重现(例如,不同的集会名称)。或者,尽管责备在Note.hbm.xml上......它也可能是其他一些映射
// there could be also some issue
_cfg.AddAssembly(typeof(User).Assembly);
_cfg.AddAssembly(typeof(Changelog).Assembly);
无论如何,尝试观察INNER异常。会有明确的问题描述。例如。用于此映射
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
// instead of this
// assembly="CRMSystem"
// we have this
assembly="WrongAssembly"
namespace="CRMSystem.shared.data.content">
我们会收到完整的例外:
NHibernate.MappingException:无法编译映射文档:... Note.hbm.xml ---&gt; NHibernate.MappingException:持久化类
CRMSystem.shared.data.content.Note,WrongAssembly not found ---&gt; System.IO.FileNotFoundException:无法加载文件或程序集&#39; WrongAssembly&#39;或其中一个依赖项。系统找不到指定的文件.WRN:程序集绑定日志记录已关闭。
注意:必须嵌入资源属性,建议不要复制。该文件将是dll的一部分,不必将其复制为文件。