调试时如何处理TransactionScope?

发布于 2024-09-16 10:29:57 字数 401 浏览 9 评论 0原文

我有由 ASP.NET 网站托管的 WebService。 TransactionScope 对象内部用于处理事务:

        using (TransactionScope scope = new TransactionScope())
        {
            ...
            scope.Complete();
        }

问题是在调试期间,当我以逐步模式遍历每一行时, 发生事务超时,任何访问数据库的尝试都会因“”错误而崩溃,结果是:禁止进一步调试。

我怎样才能在不删除提到的代码行的情况下处理这个问题?

PS 我试图找到如何增加创建事务的超时时间,但没有找到有用的东西。

欢迎任何想法。

谢谢。

I have WebService that is hosted by ASP.NET web site. Inside the TransactionScope object is used to handle transactions:

        using (TransactionScope scope = new TransactionScope())
        {
            ...
            scope.Complete();
        }

The problem is that during debugging, when I am going through each line in step-by-step mode,
transaction timeout is occurred and any attempt to access DB crashed with '' error, and as a result: further debugging is prohibited.

How could I handle that without deleting mentioned lines of code?

P.S. I've tried to find, how to increase a time-out of created transaction, but didn't find something helpful.

Any thoughts are welcome.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

So要识趣 2024-09-23 10:29:57

您可以通过传入零长度的 TimeSpan 作为构造函数的一部分来为事务指定无限超时:

using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required, new TimeSpan(0)))

Required 的 TransactionScopeOption 是无参数构造函数的默认值。

请参阅 http://msdn.microsoft.com/en- us/library/ms172152(VS.90).aspx 了解更多信息。

You can specify an infinite timeout for the Transaction by passing in a zero length TimeSpan as part of the constructor:

using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required, new TimeSpan(0)))

The TransactionScopeOption of Required is what is used as default with your parameterless constructor.

See http://msdn.microsoft.com/en-us/library/ms172152(VS.90).aspx for more information.

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