意外乐观并发性异常
本文关键字:异常 并发 乐观 意外 | 更新日期: 2023-09-27 18:06:17
我尝试更新对象的字段,并立即将其保存到数据库。
using (var ctx = new DataModel(_connectionString))
{
var MyObject it = ctx.MyObjects.Where(someConstraint).ToList()[0];
try
{
//update check time
ctx.Refresh(RefreshMode.StoreWins, it); //making sure I have it
ctx.AcceptAllChanges(); // in case something else modified it - seems unnecessary
it.TimeProperty= DateTime.UtcNow; //Setting the field
ctx.DetectChanges(); //seems unnecessary
ctx.SaveChanges(SaveOptions.AcceptAllChangesAfterSave); //no SaveOptions changed the behavior
}
catch (OptimisticConcurrencyException)
{
_logger.DebugFormat(workerClassName + ": another worker just updated the LastCheckTime");
}
//Do some other work and/or sleep
}
当我在Azure模拟器中运行2个或更多实例时,我在这里得到了很多OptimisticConcurrencyExceptions。
我正在尝试刷新对象,更新其中一个字段,然后将这些更改推送到数据库。然而,乐观并发正在阻止我。
注意:乐观并发设置在一个我从未碰过的TimeStamp字段上。
为什么会这样,我该如何修复它?
这是可能的,你有一个以上的线程在这个尝试块,修改他们自己的副本的同一实体后,都从DB刷新,但之前他们中的任何一个保存他们的更改。
试试这个:
using (var ctx = new DataModel(_connectionString))
{
bool saved = false;
do
{
var MyObject it = ctx.MyObjects.Where(someConstraint).ToList()[0];
try
{
it.TimeProperty= DateTime.UtcNow; //Setting the field
ctx.SaveChanges(SaveOptions.AcceptAllChangesAfterSave);
saved = true;
}
catch (OptimisticConcurrencyException)
{
_logger.DebugFormat(workerClassName + ": another worker just updated the LastCheckTime");
ctx.Refresh(RefreshMode.StoreWins, it);
ctx.AcceptAllChanges();
}
} while( !saved )
//Do some other work and/or sleep
}
如果这对您有效,请更改while条件以限制尝试次数