我希望并行运行的TxJobs
从此父事务创建范围。我该如何工作?
using (var tx = TransactionScope()) {
Parallel.Invoke(TxJob1, TxJob2) ;
tx.Complete();
}
我通过了DependentClone
:
using (var tx = new TransactionScope()) {
var dtx1 = Transaction.Current.DependentClone(
DependentCloneOption.RollbackIfNotComplete) ;
var dtx2 = Transaction.Current.DependentClone(
DependentCloneOption.RollbackIfNotComplete) ;
Parallel.Invoke(() => TxJob1(dtx1), () => TxJob2(dtx2)) ;
tx.Complete();
}
在TxJob1
和TxJob2
方法中,如果我只是在Complete
上调用DependentClones
,它就会有效。但是,如果我从克隆创建范围,我会得到TransactionAbortedException
:
void TxJob1(Transaction dt) {
using (var tx = new TransactionScope(dt)) {
Console.WriteLine(dtx.TransactionInformation.LocalIdentifier);
tx.Complete();
}
}
主要方法中的Complete
调用引发了异常,而不是TxJobs
。为什么这会失败?
[edit]如果我在TxJobs中的DependentTransaction上显式调用Complete,那么它可以工作。如果我没有在TxJobs中的新TransactionScope上调用Complete(触发回滚),则父事务失败。看起来我必须在两个Transaction对象上调用Complete。