6

请参阅使用 Reload(数据库获胜)解决乐观并发异常

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()?此调用永远不会更改数据库中的数据。

4

1 回答 1

3

我同意这不是太清楚。这段代码的意图在这句话中

然后该实体通常以某种形式返回给用户,他们必须尝试再次进行更改并重新保存。

因此,如果他们添加评论会更好:

...
// User evaluates current values and may make new changes.
try
{
    context.SaveChanges();
}
...
于 2013-02-19T21:46:59.990 回答