TransactionScope is a .NET class used to mark a block of code as transactional.
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 transactionscopeI am getting the following error when I try to call a stored procedure that contains a SELECT Statement: The …
c# .net sql-server transactions transactionscopeI'm writing an integration test where I will be inserting a number of objects into a database and then checking …
c# .net nhibernate transactions transactionscopeIn 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 msdtcI have a long running TransactionScope in C#. I told the scope that it should have a long timespan, but …
c# entity-framework transactions transactionscopeI am building my own custom repository, based on entity framework, and I'm creating some extension methods that allow me …
entity-framework-4 transactions transactionscopeI 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 transactionscopeSee 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 transactionscopeWhat 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 transactionscopeI 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