我正在尝试通过创建新对象向数据库添加新记录:
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:“索引超出范围。必须为非负数且小于集合的大小。参数名称:索引”
我理解的错误是由于复杂的映射而发生的:
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 表的引用取决于级别值(4 或 5)。选择完美。但是当我尝试 SaveOrUpdate 时,出现上述错误。
和小笔记。没有下一个属性:
.Not.Insert()
.Not.Update()
.Cascade.None()
.ReadOnly();
我有引用 Lvl 字段的索引超出范围错误。所以这就是为什么我猜这就是罪魁祸首。
Level4 和 Level5 类继承自 Level 类。
我究竟做错了什么?