简体   繁体   English

映射列中的NHibernate错误

[英]NHibernate error in mapping column

My hbm.xml file is as follows: 我的hbm.xml文件如下:

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="Project.Data.BusinessObjects" assembly="Project.Data">
  <class name="Project.Data.BusinessObjects.HSBom, Project.Data" table="[dbo].[HS_Bom]" lazy="true">
    <id name="Id" column="[bomID]">
      <generator class="assigned" />
    </id>
    <property name="BomPosition" column="[bomPosition]" />
    <property name="Quantity" column="[quantity]" />
    <property name="CreatedBy" column="[createdBy]" />
    <property name="CreatedAt" column="[createdAt]" />
    <property name="UpdatedBy" column="[updatedBy]" />
    <property name="UpdatedAt" column="[updatedAt]" />
    <many-to-one name="HSPartList1" column="[parentPartListId]" class="HSPartList" />
    <many-to-one name="HSPartList2" column="[childPartListId]" class="HSPartList" />
    <bag name="HSInstructions" table="[dbo].[HS_SubParts]" lazy="true" cascade="all" inverse="false" >
      <key column="[bomID]"></key>
      <many-to-many column="[sectionID]" class="HSInstruction" />
    </bag>
  </class>
</hibernate-mapping>

When I run my application am getting an error: Project.Data.HbmMaps.HSBom.hbm.xml(17,17): XML validation error: The 'column' attribute is not declared. 当我运行我的应用程序时,出现错误:Project.Data.HbmMaps.HSBom.hbm.xml(17,17):XML验证错误:未声明'column'属性。

Whats is the issue with the mapping xml? 映射xml有什么问题?

Looks like its an issue with the hbm file/files for the foreign key references in your file being treated as 'Content' resources rather than embedded resources. 看来这与hbm文件中的文件有关,这些文件中的外键引用被视为“内容”资源而不是嵌入式资源。 You can do the same by right clicking on the hbm file though your visual studio solution explorer and changing build action to 'embedded resource' from 'content' for the appropriate hbm files. 您可以通过在Visual Studio解决方案资源管理器中右键单击hbm文件,然后将相应的hbm文件的构建操作从“内容”更改为“嵌入资源”,来执行此操作。

在此处输入图片说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM