在父子关系中将表映射到自身Fluent Nhibernate

时间:2010-12-02 09:56:31

标签: nhibernate fluent-nhibernate

我的情况是我将表的列映射到同一个表的主键。该表看起来像这样

---+-------+---------
ID  Name    ParentId
---+-------+---------
1   Parent1  0
2   Child 1  1
3   Child 2  1
4   Parent2  0
5   Child 3  4

我创建了一个以下的Model和Fluent NHibernate映射类

//Model.LocationType.cs
public class LocationType
    {
        public virtual long Id { get; set; }
        public virtual string ShortName { get; set; }
        public virtual string Description { get; set; }        
        public virtual IList<LocationType> ParentId { get; set; }
    }

//Mapping.LocationTypeMap.cs
public class LocationTypeMap : ClassMap<LocationType>
    {
        public LocationTypeMap()
        {
            Table("SET_LOC_TYPE");
            Id(x => x.Id).Column("LOC_TYPE_ID").GeneratedBy.Assigned();
            Map(x => x.ShortName, "SHORT_NAME").Length(15).Not.Nullable();
            Map(x => x.Description, "LOC_DESC").Length(50).Not.Nullable();
            References(x => x.ParentId).Column("PARENT_LOC_TYPE_ID").Cascade.SaveUpdate();
        }
    }

但我在执行代码时收到以下错误消息:

Unable to cast object of type 'SmartHRMS.Core.Domain.Model.LocationType' to type 'System.Collections.Generic.IList`1[SmartHRMS.Core.Domain.Model.LocationType]'. 

编辑1: 而不是使用我试过的

HasMany(x => x.ParentIds).KeyColumn("PARENT_LOC_TYPE_ID");

虽然它起作用并解决了我上面提到的铸造问题,但我得到的结果与我需要的相反。 在父的LocationType对象中,它列出了IList中的所有子项,因此对于上面的示例,结果将是:

-----+----------+------
ID     Name       ParentId
-----+----------+------
1     Parent1     IList<Child1, Child2>
2     Child 2     IList<Empty>
3 .... same
4     Parent2     IList<Child3>
5     Child 3     IList<Empty>

1 个答案:

答案 0 :(得分:1)

似乎您应该在映射中使用HasMany而不是References