3
如何在實際刪除實體之前更新實體中包含的審覈信息?我正在研究從DbContext派生的類。刪除前更新實體
我試圖通過改變狀態修改,然後將更新的信息,然後調用base.SaveChanges(),然後將其標記爲刪除。當我在設置更新的信息後嘗試調用SaveChanges時,問題就出現了。看來,關係的其他對象被標記爲已刪除,我得到這個例外:
"A relationship from the 'ChildrenEntity' AssociationSet is in the 'Deleted' state. Given multiplicity constraints, a corresponding 'ParentEntity' must also in the 'Deleted' state."
謝謝!