문제

I have one table names SchoolStricture in which the Primary key is "ID" and one another feild is "ParentStructureEntityID" which stores the primary key of the same table. The purpose of this table is to create a tree structure. During that parent's id will store in this "ParentStructureEntityID". I am a beginner in NHibernate. How can i map these two feild in my .hbm.xml file.

Please help me out of this.....

도움이 되었습니까?

해결책

Your xml mapping will be something like this:

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">

  <class name="SchoolStructure" table="SchoolStructure">
    <id name="ID">
      <column name="ID"/>
      <generator class="native" />
    </id>
    <many-to-one name="ParentStructure" column="ParentStructureEntityID" />
  </class>
</hibernate-mapping>

And your class will be:

public class SchoolStructure
{
    public virtual int ID {get; private set;}
    public virtual SchoolStructure ParentStructure {  get; set;}
}

That's of course for starters. You should ideally override GetHashCode and Equals in proper manner. Finally I humbly suggest using mapping by code instead of xml mapping. Good luck!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top