EF Code First DBContext 和事务
我想知道使用 DBContext
实现事务的最佳方法是什么。特别是,
- 如果我更改多个实体,
DbContext.SaveChanges
是否会实现内部事务? - 如果我想多次调用
DbContext.SaveChanges
(相同contxet/不同contxet),如何实现事务?
I would like know what is the best possible way to implement transactions with DBContext
. In particular,
- Does
DbContext.SaveChanges
implement transaction internall if i change multiple entities? - If i want to call
DbContext.SaveChanges
multiple times(same contxet/different contxets), how transaction can be achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SaveChanges
在内部使用事务。TransactionScope
包装对SaveChanges
的多个调用示例:
SaveChanges
uses transaction internally.TransactionScope
to wrap multiple calls toSaveChanges
Example:
对于异步操作,请执行以下操作。
参考文献:learn.microsoft.com/en-us/ef/ef6/保存/交易
For asynchronous operation do the following.
References: learn.microsoft.com/en-us/ef/ef6/saving/transactions