tags:

views:

324

answers:

2

Is it possible to use the System.Transactions programming model without support for distributed transactions?

something like

  TransactionConfig.DisablePromotion = true;
+1  A: 

I don't think there is a direct way to disable promotion. You might want to look at the situations that cause a transaction to get promoted. Juval Lowy wrote an excellent whitepaper (also downloadable here) all about System.Transactions. He covers the promotion rules in detail.

Mike Two
You can also find an HTML version of Juval Lowy's Introducing System.Transactions at http://msdn.microsoft.com/en-us/library/ms973865.aspx
Tuzo
+2  A: 
Tuzo
+1 for you Tuzo. Well said.
Peter LaComb Jr.