Top "Transactionscope" questions

TransactionScope is a .NET class used to mark a block of code as transactional.

The transaction manager has disabled its support for remote/network transactions

I'm using SQL Server and ASP.NET. I have the following function: Using js = daoFactory.CreateJoinScope() Using tran = New Transactions.…

asp.net vb.net transactionscope
"The operation is not valid for the state of the transaction" error and transaction scope

I am getting the following error when I try to call a stored procedure that contains a SELECT Statement: The …

c# .net sql-server transactions transactionscope
How does TransactionScope roll back transactions?

I'm writing an integration test where I will be inserting a number of objects into a database and then checking …

c# .net nhibernate transactions transactionscope
TransactionScope automatically escalating to MSDTC on some machines?

In our project we're using TransactionScope's to ensure our data access layer performs it's actions in a transaction. We're aiming …

c# .net transactions transactionscope msdtc
Transaction scope timeout on 10 minutes

I have a long running TransactionScope in C#. I told the scope that it should have a long timespan, but …

c# entity-framework transactions transactionscope
Multiple SaveChanges calls in entity framework

I am building my own custom repository, based on entity framework, and I'm creating some extension methods that allow me …

entity-framework-4 transactions transactionscope
TransactionScope Prematurely Completed

I have a block of code that runs within a TransactionScope and within this block of code I make several …

c# sql-server ado.net deadlock transactionscope
Why doesn't TransactionScope work with Entity Framework?

See the code below. If I initialize more than one entity context, then I get the following exception on the 2…

c# .net entity-framework transactions transactionscope
Difference between Implicit and Explicit Transaction

What is the difference between Implicit and Explicit transaction in Sql Server 2008? What happens in TransactionScope background? I'm using TransactionScope …

sql-server-2005 sql-server-2008 c#-4.0 transactions transactionscope
How to use TransactionScope properly?

I always want to try to use TransactionScope but I just can't figure out what people see about it that …

c# .net vb.net transactionscope