SiberianGuy
SiberianGuy

Reputation: 25302

System.Transactions vs. MSDTC

What is possible with MSDTC but is not possible with System.Transactions (and TransactionScope)?

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?

Upvotes: 2

Views: 463

Answers (1)

Aravind
Aravind

Reputation: 4163

System.Transactions provides enhanced performance with Dynamic Escalation and Promotable Enlistments. Please refer msdn info.

Upvotes: 1

Related Questions