transactionscope
Transaction Scope fails with BeginTransaction in Oracle : Connection is already part of a local or a distributed transaction
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 :[详细]
2023-03-24 06:22 分类:问答MSDTC is only working in one direction
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 &[详细]
2023-03-23 20:05 分类:问答Dapper & TransactionScope?
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[详细]
2023-03-23 08:46 分类:问答Transaction for two different entities in Entity Framework 4
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.[详细]
2023-03-23 04:48 分类:问答Does TransactionScope support atomic DB execution?
I am at the moment developping a project where the DAL is implemented in .Net using the ADO Entity Framework.[详细]
2023-03-22 00:05 分类:问答problem in creating and restoring a database within a transaction scope?
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[详细]
2023-03-20 06:36 分类:问答TransactionScope and SQL Server Compact
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[详细]
2023-03-20 01:15 分类:问答TransactionScope and deadlocks in sproc
I\'ve got a sproc that basically goes: begin transaction 开发者_Go百科SELECT UPDATE INSERT commit transaction[详细]
2023-03-17 00:33 分类:问答Transaction scope not working for Second 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[详细]
2023-03-16 09:58 分类:问答Difference Between Transaction and TransactionScope
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[详细]
2023-03-16 02:49 分类:问答