score:5

do you have any idea why are you triggering distributed transactions? this is what you need to investigate. usual culprit is multiple ado.net connection from a single transactionscope. see ado.net and system.transactions and ado.net and linq to sql. make sure you use a single connection (ie. linq2sql context) in a transaction scope. you shouldn't have to use more than one per http call anyway.


Related Query

More Query from same tag