请参阅Resolving optimistic concurrency exceptions with Reload (database wins):
using (var context = new BloggingContext())
{
var blog = context.Blogs.Find(1);
blog.Name = "The New ADO.NET Blog";
bool saveFailed;
do
{
saveFailed = false;
try
{
context.SaveChanges();
}
catch (DbUpdateConcurrencyException ex)
{
saveFailed = true;
// Update the values of the entity that failed to save from the store
ex.Entries.Single().Reload();
}
} while (saveFailed);
}
为什么在SaveChanges()
之后调用方法Reload()
?
此调用永远不会更改数据库中的数据。
答案 0 :(得分:3)
我同意这不太清楚。这段代码的意图在句子
中然后,该实体通常以某种形式返回给用户,他们必须再次尝试进行更改并重新保存。
如果他们添加评论会更好:
...
// User evaluates current values and may make new changes.
try
{
context.SaveChanges();
}
...