gpt4 book ai didi

c# - TransactionScope Complete() 在退出 USING 语句之前不提交事务

转载 作者:可可西里 更新时间:2023-11-01 09:08:11 25 4
gpt4 key购买 nike

我遇到了这种奇怪的行为,事务只有在 using 退出时才会提交,而不是在调用 scope.Complete();

时提交
using (TransactionScope scope = new TransactionScope(TransactionScopeOption.RequiresNew))
{
scope.Complete();
// data still doesn't show in db
}
// now shows in db

如何在退出 using 语句之前提交事务?

最佳答案

来自 documentation :

The actual work of commit between the resources manager happens at the End Using statement if the TransactionScope object created the transaction.

因此看起来您无法在 using 语句结束之前真正提交事务。

关于c# - TransactionScope Complete() 在退出 USING 语句之前不提交事务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16214102/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com