我们是否必须启用 MSDTC 才能使用 TransactionScope?

发布于 2024-09-25 20:52:31 字数 188 浏览 6 评论 0原文

我们是否必须启用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乖乖哒 2024-10-02 20:52:31

如果您在同一范围内使用多个连接,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文