我有一个应用程序,它允许多个用户和一个具有2个ID作为复合键的数据库表。这些ID也是来自另一个表的外键。
因此,当2个用户尝试将具有相同ID的条目添加到此表中时,其中一个由于主键约束违反而获得UpdateException。
我已经发现应该这样处理:
try
{
result = base.SaveChanges(options);
}
catch (UpdateException ex)
{
SqlException innerException = ex.InnerException as SqlException;
if (innerException != null && innerException.Number == 2627 || innerException.Number == 2601)
{
// handle here
}
else
{
throw;
}
}
但是我实际上在“//Handle here”部分上做什么。我尝试刷新对象,但是它处于“已添加”状态,因此无法刷新。
我想做的是:确认已经有一个具有这些ID的对象,删除要插入的对象并从数据库中加载现有对象。
我怎样才能做到这一点?
最佳答案
自从我获得赞成票以来,我回想了如何解决此问题。所以这就是我所做的:
// Exception number 2627 = Violation of %ls constraint '%.*ls'. Cannot insert duplicate key in object '%.*ls'.
// Exception number 2601 = Cannot insert duplicate key row in object '%.*ls' with unique index '%.*ls'.
// See http://msdn.microsoft.com/en-us/library/cc645603.aspx for more information and possible exception numbers
if (innerException != null && (innerException.Number == 2627 || innerException.Number == 2601))
{
// Resolve the primary key conflict by refreshing and letting the store win
// In order to be able to refresh the entity its state has to be changed from Added to Unchanged
ObjectStateEntry ose = ex.StateEntries.Single();
this.ObjectStateManager.ChangeObjectState(ose.Entity, EntityState.Unchanged);
base.Refresh(RefreshMode.StoreWins, ose.Entity);
// Refresh addedChanges now to remove the refreshed entry from it
addedChanges = this.ObjectStateManager.GetObjectStateEntries(System.Data.EntityState.Added).Where(s => !s.IsRelationship);
}
else
{
throw;
}
编辑:
请注意,从EF 4.1开始,
UpdateException
已重命名为DbUpdateException
。关于c# - 如何在 Entity Framework 上处理UpdateException- 'Violation of PRIMARY KEY constraint'?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22942271/