Having this strange behavior while using OracleConnection with TransactionScope. If i try to use connection.BeginTransaction() in a transaction scope i get simple elegant InvalidOperationException :
I\'m trying to use TransactionScope for unit tests and I keep getting errors on our build server. After following several helpful SO answers and blogs, I installed DTCPing and ran it on both server1 &
I just started playing around with Dapper. So far i love it. Does dapper not work with TransactionScope? I noticed that even if i never call TransactionScope.Complete then my changes are still committ
I have two different entities of different databases. In my process I want to manipulate both databases, and the whole process must be in transaction.
I am at the moment developping a project where the DAL is implemented in .Net using the ADO Entity Framework.
I have a function in which i have called a stored procedure to create a new db and restore an existingdb in to that newly created db..It is working fine without transaction scope but inside a transact
SQL Server Compact doesn\'t support distributed transactions. So if there are more than one connection inside TransactionScope - the exception is thrown. Is there any way to setup ADO.NET provider to
I\'ve got a sproc that basically goes: begin transaction 开发者_Go百科SELECT UPDATE INSERT commit transaction
In my application transaction scope is not working for second transaction..It is working fine for first transaction means if an exception is thrown first transactions got rollback but the second one d
I am developing an application which communicates with an SQL Server 2005 database to execute some stored procedures. My client demands that all transactions be managed on the C# side and not by SQL S