作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如,如何在 EF Core 中使用 sql 查询this._context.Person.FirstOrDefault(a => a.id==1).ForUpdate()
SELECT * FROM person WHERE id = 1 FOR UPDATE;
在 EF 核心中,我发现使用 EF 核心([ConcurrencyCheck], with Fluent Api ".IsConcurrencyToken();") 实现乐观并发,但它没有解决我的问题
最佳答案
您可以使用 TransactionScope
下 System.Transactions
using (var scope = new TransactionScope())
{
var person = this._context.Person.FirstOrDefault(a => a.id==1);
person.Col1 = "John Doe";
this._context.Person.Update(person);
this._context.SaveChanges();
scope.Complete();
}
关于c# - Entity Framework Core悲观锁行表Mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54408220/
我正在编写一个 Web 应用程序,两个不同的用户可以在其中更新事物列表,例如待办事项列表。我已经意识到,乐观锁定机制效果最好,因为我不希望出现高争用情况。 我一直在查看事务隔离级别,现在我有点困惑。看
我是一名优秀的程序员,十分优秀!