System.Transactions vs. MSDTC
What is possible with MSDTC but is not possible with System.Transactions (and T开发者_开发问答ransactionScope)?
As I know MSDTC supports usage of one transaction from several processes but TransactionScope (with DependentTransaction) is limited to AppDomain. Is it true?
Are there any other differences?
System.Transactions provides enhanced performance with Dynamic Escalation and Promotable Enlistments. Please refer msdn info.
精彩评论