Giao dịch không chuyển vào Parallel.ForEach
, bạn phải thực hiện giao dịch theo cách thủ công.
//Switched to a thread safe collection.
var documents = new ConcurrentQueue<ExtractedContent>();
using (var ts = new TransactionScope(TransactionScopeAsyncFlowOption.Enabled))
{
var attachments = await dao.GetAttachmentsAsync();
//Grab a reference to the current transaction.
var transaction = Transaction.Current;
Parallel.ForEach(attachments, a =>
{
//Spawn a dependant clone of the transaction
using (var depTs = transaction.DependentClone(DependentCloneOption.RollbackIfNotComplete))
{
documents.Enqueue(a.ToDbDocument());
depTs.Complete();
}
});
ts.Complete();
}
Tôi cũng đã chuyển từ List<ExtractedContent>
thành ConcurrentQueue<ExtractedContent>
bởi vì bạn không được phép gọi .Add(
trên một danh sách từ nhiều chủ đề cùng một lúc.