我必须在我的项目中使用HQL查询,并且我发现了错误:"实体未映射"。
当我阅读nHibernate HQL - entity is not mapped或nHibernate HQL - entity is not mapped(或其他网站)时,我可以读到我必须使用auto-import =" true"在每节课上。
<hibernate-mapping
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
namespace="BusinessObjets" assembly="BusinessObjects"
xmlns="urn:nhibernate-mapping-2.2" auto-import="true"> ...
当我们使用nhibernate 3.2代码进行映射时,我们如何设置这个自动导入?
我使用该代码加载映射:
var mapper = new ModelMapper();
mapper.AddMappings(typeof(Repository).Assembly.GetTypes());
return mapper.CompileMappingForAllExplicitlyAddedEntities();
此致
答案 0 :(得分:7)
您不能直接在代码映射中设置它,但在将HbmMapping
方法传递给CompileMappingForAllExplicitlyAddedEntities
对象之前,您可以修改Configuration
方法返回的对象:< / p>
mapping.autoimport = true;