TransactionScope is a .NET class used to mark a block of code as transactional.
When Method1() instantiates a TransactionScope and calls Method2() that also instantiates a TransactionScope, how does .NET know both are in …
.net database design-patterns transactionscopeUsing Entity Framework (code first in my case), I have an operation that requires me to call SaveChanges to update …
entity-framework sql-server-2012 transactionscope entity-framework-5 msdtcI have been working on a winform app with Oracle 10g database which is using TransactionScope and wanted to modify …
c# transactions oracle10g transactionscope msdtcI'm trying to use TransactionScope for unit tests and I keep getting errors on our build server. After following several …
transactionscope msdtcI've been tried to get my head around this for a couple of days and there are lots of tutorials …
c# entity-framework transactions transactionscopeI was wondering how you would use the TransactionScope class in the correct way when you are dealing with multithreading? …
.net multithreading transactions transactionscopeHaving this strange behavior while using OracleConnection with TransactionScope. If i try to use connection.BeginTransaction() in a transaction scope …
c# oracle transactionscope odp.netI search on stackoverflow but could not find a similar question, please point me if there is already one. I …
c# .net entity-framework async-await transactionscopeWhat is the best way to know if the code block is inside TransactionScope? Is Transaction.Current a realiable way …
c# .net transactionscopeI am doing cascading deletes in an event sent from a Gridview. The deletes are in a Transaction. Here is …
c# asp.net linq gridview transactionscope