我尝试了this,但却产生了异常......
我有这段代码:
ISession.Evict(entity);
var oldEntity = ISession.Get(entity.ID);
entity = ISession.SaveOrUpdate(entity);
//Do Something with old and new...
但是,当SaveOrUpdate抛出此异常时:
{“具有相同标识符值的另一个对象已与会话关联:4201,实体:MyEntity”}
要解决此问题的一些建议?