如何在实体框架中配置事务?
如何在 Entity Framework 4 中配置事务?在普通的旧 Ado.Net 中,我们有一个名为 SqlTransaction 的类,我们还可以为该事务指定隔离级别,如 Read_Commited、Read_UnCommited 等。我在实体框架中找不到所有这些选项。我们如何配置它们?
How do I configure transactions in Entity Framework 4? In plain old Ado.Net we had a class named SqlTransaction, we could also specify isolation level for that transaction like Read_Committed, Read_UnCommitted etc. I can't find all these options in Entity Framework. How can we configure them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 TransactionScope 类,并设置隔离使用 TransactionOptions 的级别,如此处:
例如:
You can use the TransactionScope class, and set the isolation level using TransactionOptions as described here:
For example: