Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该在我的模型类上维护一个为数据更新和删除Timestamp property启用乐观并发吗?如果我不使用这样的属性,EF是否会在运行时给出并发异常?
Timestamp property
这是启用并发处理的必要条件吗?
[Timestamp] public byte[] RowVersion { get; set; }
是的,或者你用[ConcurencyCheck]. 否则,您最终将获得最后写入获胜的方案。
[ConcurencyCheck]
编辑:
如何处理并发的官方教程:
在 ASP.NET MVC 应用程序中使用实体框架处理并发