如何防止网络论坛脏写?
作为一名网络开发学徒,我对防止网络论坛脏写一无所知。有什么值得深思的吗?提前致谢!
我正在研究 ASP.NET MVC 和实体框架。
好吧,抱歉误导了。这里的脏写是指覆盖数据库中另一个人的更改。使用乐观并发时。
As a apprentice for web development, I have no clue of preventing dirty write for web forums. Is there any food for thought? Thanks in advance!
I'm working on ASP.NET MVC and Entity Framework.
Okay, sorry for misleading. The dirty write here means overwrite changes of another person in the database. While using a Optimistic Concurrency.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在 EF 中执行乐观并发,您可以:
当更新期间存储的值与旧值不匹配时,EF 将抛出 OptimisticConcurrencyException。
To do optimistic concurrency in the EF, you:
The EF will throw OptimisticConcurrencyException when the stored value doesn't match the old value during an update.