我是 NHibernate 的新手,遇到一个简单但顽固的错误时遇到了困难。
我的数据库(MSSQL2008)中有一个表,其中复合键由 2 个日期列组成。
这些将代表一个时间段 StartDate 和 EndDate 对于我的解决方案而言是唯一的。
表定义如下:
CREATE TABLE [dbo].[CompositeKeyTab]( [KeyCol1] [date] NOT NULL, [KeyCol2] [date] NOT NULL, [Value] [decimal](18, 0) NULL, CONSTRAINT [PK_CompositeKeyTab] PRIMARY KEY CLUSTERED ( [ KeyCol1] ASC, [KeyCol2] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]
在我的域模型中,我有一个相应的实体:
public class CompositeKeyEnt
{
public virtual DateTime KeyCol1 { get; set; }
public virtual DateTime KeyCol2 { get; set; }
public virtual decimal Val { get; set; }
public override bool Equals(object obj)
{
var compareTo = obj as FinancialDay;
if (compareTo == null)
return false;
return this.GetHashCode() == compareTo.GetHashCode();
}
public override int GetHashCode()
{
return this.KeyCol1.GetHashCode() ^ this.KeyCol2.GetHashCode();
}
}
在我的映射程序集中有一张地图:
public class CompositeKeyEntMap: ClassMap<CompositeKeyEnt>
{
public CompositeKeyEntMap()
{
WithTable("CompositeKeyTab");
UseCompositeId().WithKeyProperty(e => e.KeyCol1, "KeyCol1").WithKeyProperty(e => e.KeyCol2, "KeyCol2");
Map(e => e.Val, "Value");
}
}
一切编译正常。但是当我尝试将我的类的一个实例持久化到数据库时(就像这样)
CompositeKeyEnt cke = new CompositeKeyEnt() { KeyCol1 = DateTime.Now.AddDays(1), KeyCol2=DateTime.Now.AddDays(1), Val = 2.2M };
CompositeKeyEnt cke1 = new CompositeKeyEnt() { KeyCol1 = DateTime.Now, KeyCol2 = DateTime.Now, Val = 1.1M };
Repository<CompositeKeyEnt> crep = new Repository<CompositeKeyEnt>();
crep.SaveOrUpdate(cke);
crep.SaveOrUpdate(cke1);
我得到:
“意外的行数:0;预期:1”
在会话上调用 Flush() 时。
public virtual T SaveOrUpdate(T entity)
{
using (var context = Session)
{
context.SaveOrUpdate(entity);
context.Flush(); //Exception raised here!!!
}
return entity;
}
我究竟做错了什么?