流畅的NHibernate:使用ReferencesAny映射,索引超出了范围异常

时间:2013-05-30 15:19:51

标签: c# fluent-nhibernate

我正在尝试通过创建新对象向数据库添加新记录:

using (var session = conn.OpenNewSession())
{
 using (var tran = session.BeginTransaction())
 {
  TableHours hours = new TableHours(periodId, level, levelId.ToString(), levelTblRef);
  hours.WorkHours = 10;
  session.SaveOrUpdate(hours);
  tran.Commit(); //Exception thrown here
 }
}

在transaction.Commit()之后抛出System.ArgumentOutOfRangeException:“索引超出范围。必须是非负数且小于集合的大小。参数名称:index”

我理解的错误是因为复杂的映射而发生的:

public class TableHours
{
public virtual int SaleMonthId { get; protected set; }
public virtual int Level { get; protected set; }
public virtual string LevelId { get; protected set; }
public virtual Level Lvl { get; protected set; }
public virtual decimal WorkHours { get; set; }
//..other methods
public TableHours(int saleMonthId, int level, string levelId, Level lvl)
{
            this.SaleMonthId = saleMonthId;
            this.Level = level;
            this.LevelId = levelId;
            this.Lvl = lvl;
}
}

映射:

public class TableHoursMap : ClassMap<TableHours>
{
    public TableHoursMap()
    {
        Table("TableHours");

        CompositeId()
            .KeyProperty(x => x.SaleMonthId)
            .KeyProperty(x => x.Level)
            .KeyProperty(x => x.LevelId, "Id");

        Map(x => x.SaleMonthId);

        Map(x => x.Level);

        Map(x => x.LevelId, "Id");

        Map(x => x.WorkHours);

        ReferencesAny(x => x.Lvl)
            .IdentityType<string>()
            .EntityTypeColumn("Level")
            .EntityIdentifierColumn("Id")
            .AddMetaValue<Level5>("5")
            .AddMetaValue<Level4>("4")
            .Not.Insert()
            .Not.Update()
            .Cascade.None()
            .ReadOnly();
}
}

即。 Lvl字段引用表Level4或Level5表,具体取决于Level值(4或5)。 选择工作完美。 但是当我尝试SaveOrUpdate时,我有上述错误。

小记。没有下一个属性:

.Not.Insert()
.Not.Update()
.Cascade.None()
.ReadOnly();

我有Lvl字段引用的Index超出范围错误。所以这就是为什么我猜这是责怪的人。

Level4和Level5类继承自Level类。

我做错了什么?

1 个答案:

答案 0 :(得分:2)

IdLevel已映射3次:

  • .KeyProperty(x => x.Level).KeyProperty(x => x.LevelId, "Id");
  • Map(x => x.Level);Map(x => x.LevelId, "Id");
  • ReferenceAny

我建议删除Map(x => x.Level);Map(x => x.LevelId, "Id");,因为它们与KeyProperties重复

注意:

  • .Not.Insert().Not.Update().ReadOnly()来说是多余的,{{1}}是前
  • 的捷径