TransactionScope is a .NET class used to mark a block of code as transactional.
I use TransactionScope in this code: private void ExecuteSP() { bool IsComplete = false; SqlCommand sqlComm = null; //6 hours!!! TimeSpan ts1 = new TimeSpan(6, 0, 0); …
c# sql stored-procedures app-config transactionscopeJust curious if anyone else has got this particular error and know how to solve it? The scenario is as …
asp.net sql transactions transactionscope msdtcI got following error once in my application. This SQLTransaction has completed; it is no longer usable Stack Trace is …
c# .net ado.net transactionscopeI'm looking for a description of the root of this error: "Transaction context in use by another session". I get …
.net sql-server transactions transactionscopeI am using 'TransactionScope', and I need to just do some DML within the C# Code, which I have successfully. …
c# asp.net transactions transactionscopeSay I'm having a Windows Form application which connected to n databases, with n connections opened simultaneously. What I'm looking …
c# .net transactionscopeI have a parent object (part of a DAL) that contains, amongst other things, a collection (List<t>) …
c# transactions transactionscope distributed-transactionsI have two transaction scopes, one within another. I would love to know if the inner transaction scope will be …
c# transactionscopeI have "inherited" a little C# method that creates an ADO.NET SqlCommand object and loops over a list of …
sql-server ado.net transactions transactionscopeWhen i create a TransactionScope object as followed: using (TransactionScope ts = new TransactionScope()) { // Do stuff... } What is the default transaction …
c# sql transactionscope