我正在尝试在外键实体链中批量插入一些实体。实体ID映射为标识。
我有一个A列表,其中B为属性,B有C为属性。
当我尝试将更改提交到数据库时,它会给我错误: “对象引用未保存的瞬态实例 - 在刷新之前保存瞬态实例,或者将属性的级联操作设置为使其自动保存的内容。”
class Program
{
static viod Main (string[] args)
{
var list = new List<A>{
new A{
B = new B{
C = new C{
Name = "test";
}
}
},
new A{
B = new B{
C = new C{
Name = "test";
}
}
},
};
foreach(var a in list)
{
statelessSession.Insert(a);
//session.Save(a); // I have tried this as well, does not work neither.
}
transaction.Commit();
}
}
public class A : BaseEntity
{
public virtual B B{get; set;}
}
public class B : BaseEntity
{
public virtual C C{get; set;}
}
public class C : BaseEntity
{
public virtual string Name{get; set;}
}
public class BaseEntity
{
public virtual long ID {get; set;}
}
答案 0 :(得分:0)
你做不到。
使用Identity需要NHibernate选择最后一个插入,以便将ID与下一条记录相关联。
http://www.philliphaydon.com/2011/09/the-benefits-of-letting-the-orm-generate-the-identity-part-1/
您需要使用Guid Comb或HiLo。
这允许NHibernate生成密钥本身并在批处理和插入之前创建所有关联。