Simpleroleprovider causing remote transaction inside transactionscope
问题 I am in the process of upgrading asp.net membership to the new simplemembership provider in MVC4. This is an Azure/Sql Azure app which runs fine on localhost but fails when deployed. I have code in a transaction as follows: TransactionOptions toptions = new TransactionOptions(); toptions.IsolationLevel = System.Transactions.IsolationLevel.Serializable; using (TransactionScope trans = new TransactionScope(TransactionScopeOption.Required, toptions)) { try { ... do a bunch of database stuff in a