IBeamMDAA V2版本中,由于变更了 当事人角色 的继承机制,在添加 当事人角色时,为了 构建 当事人-当事人角色之间的关系,代码如下:
//if (party.PartyRoles != null && !party.PartyRoles.Contains(sysUser))
//{
// party.PartyRoles.Add(sysUser);
//}
由于 party.PartyRoles 导致一次多态查询,因此引起了以下错误:
An error occured when trying to dispose the transaction ---> NHibernate.StaleStateException: Batch update returned unexpected row count from update; actual row count: 0; expected: 1
因此,在以后的代码中,应该注意此代码。
时间: 2024-10-29 05:25:06