在我的应用程序中,我使用以下模式来调用DB:
//do a transaction
using (TransactionScope transaction = new TransactionScope(TransactionScopeOption.Required))
{
OperationOnDb1();
//when we open the connection to the “other db” in this call, the transaction would become distributed
OperationOnDb2();
//transaction is now distributed
transaction.Complete();
}
问题是Operation1和Operation2 90%的时间都使用相同的db ...但是当它们使用两个DB时有些情况(错误)。如果事务变得分散,我想得到一个例外。
如何检测事务是否已提升为分布式事务?
谢谢,Radu
答案 0 :(得分:4)
答案 1 :(得分:3)
查看DistributedTransactionPermissionAttribute
。当事务管理升级到MSDTC(来自doc)时,它正在使用DistributedTransactionPermission
类,这是System.Transactions所要求的权限。
您可以将它应用于您的代码。升级时应引发安全例外。
答案 2 :(得分:0)
当您的TransactionScope
正在进行时,您可以测试:
Transaction.Current.TransactionInformation.DistributedIdentifier != default(Guid)
如果事务尚未提升为分布式,则称 DistributedIdentifier
为null。从其文档,备注部分:
如果事务升级为两阶段提交事务,则此属性返回其唯一标识符。如果事务未升级,则值为
null
。
由于此属性不可为空,原则上这显然是错误的。但是使用ILSpy进行检查时,当事务未分发时,它是Guid.Empty
(default(Guid)
)。 (但也许一些非MSDTC分布式交易不会尊重它。)