我们是否必须启用 MSDTC 才能使用 TransactionScope?
我们是否必须启用 MSDTC 才能使用 TransactionScope?
我正在使用 TransactionScope,但收到错误消息,告诉我 MSDTC 未启用。所以我启用了它。
为什么我会收到此错误消息?这正常吗? MSDTC 有什么用途?
transactionScope SQLSecver 是否特定?
Do we have to have to enable MSDTC to use TransactionScope?
I am using TransactionScope and I had error message telling me that the MSDTC not enabled. So I have enabled it.
Why am I having this error message? Is that normal? What`s MSDTC use?
Is transactionScope SQLSecver specific?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在同一范围内使用多个连接,TransactionScope 会将您的事务视为分布式事务,因此需要启用 MSDTC。有关 TransactionScope 的详细信息,请参阅此问题。
一般来说,如果你不需要分布式事务,你可以使用 NHibernate 的 ITransactions 来代替。查看 NHibernate 参考文档,了解大量 NHibernate 事务示例。
TransactionScope will treat your transaction as distributed if you use more than one connection within the same scope, therefore requiring MSDTC to be enabled. See this question for more information on TransactionScope.
Generally, if you don't need distributed transactions, you can just use NHibernate's ITransactions instead. Take a look at the NHibernate reference documentation for lots of examples of NHibernate transactions.