TransactionScope is a .NET class used to mark a block of code as transactional. It uses an implicit programming model so transactions are managed by the infrastructure, rather than the developer. The class was introduced in .NET 2.0.

learn more… | top users | synonyms

4
votes
1answer
540 views

DTC firewall requirements?

I'm attempting to set up an environment in which a TransactionScope originating on a web server (asp.net) will flow a transaction through WCF to an application server and subsequently through to the ...
3
votes
1answer
54 views

Can I specify a transaction name in TransactionScope

I know I can specify the transaction name by SqlConnection.BeginTransaction("SampleTransaction"); But it seems there is no way in the case of TransactionScope. Could somebody give some hints?
3
votes
1answer
206 views

What do these MS DTC Exceptions mean?

I wrote a program to demonstrate the behavior of DTC timeouts with multiple threads. I'm getting several exceptions, seemingly at random. Are all of these simple Timeouts, or are some of them ...
3
votes
1answer
200 views

TransactionInterop.GetDtcTransaction() throws ArgumentNullException… sometimes

I'm occasionally getting this exception, and don't seem to be able to find anything here on SO or google that can shed some insight as to how to debug this. System.ArgumentNullException: Value cannot ...
2
votes
0answers
98 views

TransactionScope - The underlying provider failed on EnlistTransaction. MSDTC being aborted

Our team have got a problem that manifests as: The underlying provider failed on EnlistTransaction; Cannot access a disposed object.Object name: 'Transaction'. which seemed to appear as soon ...
2
votes
0answers
78 views

Nested transaction scopes constructed with object initialization results in error

In my C# code I am using nested transaction scopes. I have a utility class that creates TransactionScope objects identically. Both the outer scope and the inner scope are constructed in exactly the ...
1
vote
0answers
12 views

Implicit transaction with explicit implementation

As a framework developper, I would like to provide an implicit transaction scope environment that works across threads. This would imply that a CommittableTransaction could be created from the ...
1
vote
0answers
27 views

ObjectContext inside another ObjectContext

I am working on a component factory system where ObjectContexts are automatically created depending upon some configuration rules. Each time a method is called, the component factory decides where to ...
1
vote
0answers
20 views

Serialized transaction doesn't seem to abort?

I'm experimenting with serialized transactions, for example: public static void Main() { MemoryStream stream = new MemoryStream(); BinaryFormatter formatter = new BinaryFormatter(); ...
1
vote
0answers
82 views

Multiple NHibernate Transactions in TransactionScope

I have legacy dll which uses multiple NHibernate transactions in one method. My task is to make this method act as one transaction, so I think TransactionScope should help me. However, when I made ...
1
vote
0answers
82 views

Multiple NHibernate sessions within one TransactionScope

I'm trying to wrap a piece of code inside a TransactionScope and within this code, there's 2+ nhibernate sessions being open from different repositories. The first open session works fine, but when I ...
1
vote
0answers
149 views

howto use transactions in SQLite with C# and System.Data.SQLite library?

I am using the System.Data.SQLite library (version 1.0.83.0) and C# 4.0 to use a SQLite database. I would like to use a transaction and I am trying to do the following: using (var scope = new ...
1
vote
0answers
75 views

How i Use the transaction for operation of DB and File IO?

Preface I have a table that contains information about the user, that One of the it fields is AvatarUrl that consist of user uploaded avatar url. I Need to Transaction to Track Change in DataBase ...
1
vote
0answers
20 views

Oracle column not available in subsequent transactions

For our ASP.NET application we use a C# console application to maintain our Oracle and SQLServer databases. Individual scripts are loaded and run in numerical order (the script names have the ...
1
vote
0answers
136 views

Why isn't my DbContext enrolling in my TransactionScope?

I'm using EF code first, and I can't seem to get my query to run in the context of a TransactionScope. I've seen dozens of examples of doing exactly this, and yet my insert is not transactioned; this ...
1
vote
0answers
831 views

TransactionScope giving error Distributed transaction completed. Either enlist this session in a new transaction or the NULL transaction

I am writing a Class library in c# to perform Archiving functions for production database (using SQLServer 2000). In the function, I am moving records from production database to Archive database for ...
1
vote
0answers
228 views

Open Session in View or DTO solution

I was wondering if this recipe does not use Open Session in View or Dozer works (the scenario is a spring, jsf, hibernate application): I have this in back-end module: public abstract class ...
1
vote
0answers
440 views

TransactionScope and Npgsql - Prepared Transaction Issue

I have following code: //... using (TransactionScope tScope = new TransactionScope()) { using (NpgsqlConnection myConnection = new NpgsqlConnection(_MyConnectionString)) ...
1
vote
0answers
229 views

How to use DependentTransaction with EF 4.1 DbContext

How can we use DependentTransaction with EntityFramework 4.1? If you see the article "http://stackoverflow.com/questions/2858750/what-is-the-reason-of-transaction-context-in-use-by-another-session" to ...
1
vote
0answers
216 views

Internal error not handled System.InvalidOperationException at System.Data.OracleClient.OracleConnection.CheckError

I have a web application and am getting an error, related to oracle. System.InvalidOperationException Internal error not handled (-2) at System.Data.OracleClient.OracleConnection.CheckError() This ...
1
vote
0answers
405 views

sqlite inmemory + castle-activerecord = No transaction is active on this connection

I am using sqlite in memory db ( connection string is: Data Source=:memory:;Version=3;New=True;) + Castle ActiveRecord, using C# The DB access code looks like this: using(TransactionScope()) { ...
0
votes
0answers
9 views

How to avoid DTC in SQL Server 2008 and .Net Framwork 4.0

After reading http://msdn.microsoft.com/en-us/library/8xx3tyca%28v=vs.90%29.aspx I understood that SQL Server 2008 and .NET framework 4.0 do not promote transactions to a distributed transaction ...
0
votes
0answers
21 views

Transactions and Entity Framework Pattern for Large Loads?

.NET 4.5/VS2012. I am having a discussion about the pattern/placement of EF and Transaction code. The MSSQL 2012 database is called almost exclusively via stored procedures, wrapped by EF. The ...
0
votes
0answers
9 views

Getting a transaction is indoubt exceptions

I have the following stack trace: at System.Transactions.TransactionStateInDoubt.EndCommit(InternalTransaction tx) at System.Transactions.CommittableTransaction.Commit() at ...
0
votes
0answers
18 views

TransactionScope; how to commit after an exception occured

I am retrofitting a somewhat complex program. There are hundreds of UI's which may use reflection to invoke lists of methods. Some methods call essentially 3rd party DLL's. Some DLL's throw ...
0
votes
0answers
8 views

How to flow client transaction to a service but use it only for specific code

I have the following requirements with my WCF service : The client must initiate a transaction and flow it to the service. The client must throw an exception if a transaction is not found. The ...
0
votes
0answers
23 views

Using a TransactionSccope to test Awaitable function results in a time-out

EDIT: This problem was already discussed and seemingly resolved here. I am currently writing unit tests for a DbContext. In order to restore the database (LocalDb) to its previous state after each ...
0
votes
0answers
82 views

savechanges() saving one entity and not other

A weird situation has struck me this code was running successfully two days back, but i dont know why its not running as before now : public static void ChangeStatus(int sessionID, int? ...
0
votes
0answers
100 views

The underlying provider failed on EnlistTransaction; Cannot access a disposed object

Please see the following exception and stacktrace which appears to indicate I'm attempting to enlist in a disposed transaction: System.Data.EntityException: The underlying provider failed on ...
0
votes
0answers
24 views

How to run Specflow Scenario as Transaction ?

I use Selenium WebDriver for testing UI in my MVC 3 application. it is possible to run each scenario as TRANSACTION ??? meybe can helps beforeScenario (BEGIN) and afterScenario (ROLLBACK) but I ...
0
votes
0answers
33 views

System.Transaction over zealous row locking?

I've got a .NET 3.5 web app that calls one of our WCF services to update a row and then create a new row based on that updated row, the problem is that the creation of the new row is made on a ...
0
votes
0answers
13 views

How to write to log file and unzip in one transaction using the DTC

I would like to know how I can unzip files and write to log files in one transaction i.e. if an error get thrown in the middle of logging I want the files that were zipped and other log entries be ...
0
votes
0answers
115 views

Transaction Scope with Access Database

I am using Access Database with c# windows application. My application uses different methods to update different tables of database. I want to make my code block transactional but access do not ...
0
votes
0answers
54 views

IIS Memory is full when use transactionScope and datacontext

My asp.net app work with .net 4 and has about 50 users. i do insert and update in some table's with My Datacontext. i use TransactionScope. public void Save() { //Insert and Update in some ...
0
votes
0answers
99 views

How to implement Transaction with Generic Repository Pattern?

I am implementing Generic Repository with EF and want to implemement Transaction; there will be only one context. Is the below way the right approach to implement the transaction? Is transaction ...
0
votes
0answers
94 views

Transactions in Entity Framework: How can I improve it my code?

I have there methods: ReserveOrder(id), AcceptOrder(id), CancelOrder(id) Each of it runs transaction which: Selects order by id and checks is it in good state. Additional selects from other tables ...
0
votes
0answers
144 views

Entity Framework 4 SQL Server CE4.0 Transactions

I am using EF4.4 Code First (+ repository pattern) and SQL Server CE 4.0. I face issue with Transactions. var scope = new TransactionScope( TransactionScopeOption.RequiresNew, ...
0
votes
0answers
209 views

Nested TransactionScope Exception

The code below throws the following exception. What am I doing wrong? Error Stack: System.Transactions.TransactionAbortedException: The transaction has aborted. ---> ...
0
votes
0answers
148 views

Transaction Scope and legacy code with SqlTransaction

I am developing a "wrapper" (.NET 4.0) that will call several c# legacy components (.NET 2.0) developed using its own transaction controls. Internally, these components are using SqlTransactions (with ...
0
votes
0answers
56 views

Is injecting an argument, in a policy handler, within the unity interception pipeline, permissable?

So I have pulled my transaction scope into an aspect/policy. I want to associate a database connection, just one, with this transaction scope before calling the method (a data access method) in the ...
0
votes
0answers
75 views

ASP.Net 3.5 Transactionscope with DB2

Has anyone been successful in using transactionscope in ASP.Net application with DB2 as backend? if yes, how is it implemented? Do we need to change any settings on the web/database server?
0
votes
0answers
99 views

Exception on TransactionScope

The error below is happening when calling a method that do some selects and inserts inside a TransactionScope code block. It doesn't happen all de time, some executes complete, and others throw the ...
0
votes
0answers
300 views

TransactionScope occasionally not rolling back SQL Server 2005 transactions

I am a .NET developer of a system that uses .net 3.5 and transactionScope to make interactions with our database atomic. We occasionally use more than 1 datasource, but I am occasionally seeing this ...
0
votes
0answers
106 views

Transaction Deadlock and Resolution Using only one Transaction at a time

I do have a Process that has 7 steps and is executed Automatically and uses many methods of Repository . For performance point of view I creates the context of DbContext at the beginning of the ...
0
votes
0answers
84 views

.net 3.5 transactionscope with DAAB usage

I have a tricky problem on using TransactionScope with DAAB. In short, i've a list of sql to run, and call external system for data. illustrated as follow: try { while (true) { ...
0
votes
0answers
116 views

Nesting TransactionScope

I am using domain model classes to wrap CRUD operations (among others) on a database table. All inserts/updates etc are performed inside a transaction scope using System.Transaction.TransactionScope ...
0
votes
0answers
101 views

TransactionScope and PLinq / Threading

I would like to know if I can open up multiple transaction scope from code that is running in parallel either plinq or threads. I have found posts that talk about wanting to share the score between ...
0
votes
0answers
475 views

System.Transactions.TransactionException: The transaction has already been implicitly or explicitly committed or aborted

I have the following code: private void MigrateInTrackingChannelsDbTable(Guid toSsoId, string ctid) { Database database = DatabaseFactory.CreateDatabase("TrackingChannels"); try { ...
0
votes
0answers
1k views

MSDTC fails intermittently

I have a Windows 2003 server where MSDTC is running. I have set it to No Authentication Mode, with allow inbound-outbound settings. My MSDTC works but it fails for the 1st transaction of the day. On ...
0
votes
0answers
229 views

Container Managed Transaction - Synchronization question

I have a enterprise bean which is using container managed transactions to access data in Oracle. The bean has 2 methods. Method1 writes an entry to table 1 and then does a lookup for a corresponding ...

1 2 3