transactionscope / linq to sql / 多个数据上下文
我需要一些澄清。当我们有事务范围时,事务是否跨多个数据上下文上完成的操作起作用,或者我们应该仅在事务范围内的单个数据上下文中执行数据库操作。
谢谢 XOXO
I need some clarification. When we have a transaction scope, does the transaction works across operations done on multiple datacontexts or we are supposed to do db operations only in a single datacontext within the transaction scope.
thanks
xoxo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事务可以跨数据上下文工作,但只能借助 分布式事务协调器。 (需要在运行您的产品的每台计算机上启用它。)
PS 事实上,重要的是连接,而不是数据上下文本身,但通常 DC 与连接之间存在 1:1 的关系...
Transactions can work across datacontexts, but only with the help of Distributed Transaction Coordinator. (It needs to be enabled on every machine that will run your product.)
P.S. In fact it's the connection that matters, not the datacontext itself, but usually theres a 1:1 relation for DC to Connection...