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

1
vote
1answer
22 views

Why is isolation level ignored when using TransactionScopeOption.Suppress in .net

I'm trying to execute an query with the isolation level read uncommitted within an existing transaction using LINQ TO SQL. If I use the option to suppress this transaction from the parent transaction, ...
0
votes
0answers
5 views

SQLException in TransactionScope and Safe-Points rollback

The system has several nested TransactionScope() with several SQL deletes and inserts via SqlBulkCopy.In certain situations an insert fail. I know how to handle certain insert failures hence I would ...
0
votes
1answer
23 views

Simpleroleprovider causing remote transaction inside transactionscope

I am in the process of upgrading asp.net membership to the new simplemembership provider in MVC4. This is an Azure/Sql Azure app which runs fine on localhost but fails when deployed. I have code in ...
0
votes
1answer
13 views

Transaction using TransactionScope is not rolled back in a multithreaded execution path

I have the following code: Public Async Function Convert(schemaProgress As IProgress(Of ProgressReport), membersProgress As IProgress(Of Boolean), indexProgress As IProgress(Of Boolean)) As Task ...
1
vote
1answer
41 views

RavenDb - How can I save changes to multiple document sessions in one transaction?

Within a single transaction scope, I am trying to save data to two separate Raven databases (on the same Raven server). However, changes in the second session are not being saved to the server. ...
0
votes
0answers
25 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 ...
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 ...
0
votes
0answers
10 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 ...
1
vote
1answer
53 views

TransactionScope rollback with Visual Basic.net and SQL Server 2008

I'm learning how to use transactionScope with Visual Basic.net in Visual Studio 2008 and I'm trying to make and easy query updating some data and the launching an exception, but the transactionScope ...
0
votes
0answers
23 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 ...
1
vote
0answers
29 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
2answers
53 views

Issue with timeout within TransactionScope in C#

I have an insert method that works fine with smaller data sets, but once the data sets get beyond a certain size , the method times out, regardless of what i set in the initial transaction scope. ...
0
votes
0answers
9 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
1answer
66 views

C# Nested transaction in a loop, but rolling back if any of them fail

The issue i'm trying to solve is as follows: I have a process that ingests data from a file and inserts certain things in multiple tables, as it is now it is all done with one transaction, however ...
0
votes
0answers
24 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 ...
2
votes
0answers
119 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 ...
0
votes
2answers
61 views

maxTimeout value from Machine.Config is not picked up by C# winform app

I have been working on a winform app with Oracle 10g database which is using TransactionScope and wanted to modify the maxTimeOut value specified in machine.config file, my machine.config file is in ...
2
votes
2answers
78 views

MSDTC from a standalone machine to a domain machine

The issue is that we have a website on a standalone webserver (Windows 2003 SP2 - Machine name is TESTAPP which can be sen in the log below) which uses TransactionScope. The SQL Server 2008 R2 ...
1
vote
1answer
48 views

TransactionScope Complete() doesn't commit the transaction before exiting the USING statement

I am experiencing this weird behavior where the transaction gets committed only when the using exits and not when calling scope.Complete(); using (TransactionScope scope = new ...
2
votes
1answer
45 views

LINQ to SQL - Using TransactionScope for SELECT statement - is call to Complete() necessary?

I'm using a LINQ to SQL class to define a query, and then calling the ToList() method, which executes the query. The ToList() call is wrapped in a 'using TransactionScope' block to achieve the ...
0
votes
1answer
24 views

Should I use transacion scope in a shared hosting server?

Suppose I have to different methods and I place them in the transaction scope. But every method open it's connection. so I need to enable MSDTC service in windows server. but it is a shared hosting ...
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
121 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 ...
1
vote
0answers
21 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(); ...
3
votes
3answers
118 views

Strange behaviour of the TransactionScope in C#

My application has been enabled transaction scope. The below code has been used to activate the Scope, it was activated for one hour. However, It has been ended in 10 mins. using (TransactionScope ...
1
vote
0answers
85 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 ...
0
votes
0answers
28 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 ...
1
vote
1answer
33 views

TransactionScope TransactionAborted Exception - BeginCommit()?

TimeoutException problems. Context: Visual Studio 2010 The problem: I occasionally (ca once a day on a program that runs once an hour) get an exception that I do not understand. This is the ...
0
votes
1answer
88 views

EF 5.0 not rolling back transaction with computed identity value

I have two tables, HOTEL and OWNER. Both have and Identity column, but one has a required foreign key for the other table. I NEED to transactionly add both records at the same time, but if the insert ...
0
votes
1answer
32 views

Transaction for single class

I've an asp.net application which take advantage of three tier layer: DAL -> IUnitOfWork interface which implements EntityFramework BLL -> set of business logic class where evenry class inherits from ...
0
votes
1answer
52 views

EF5 and Ado.Net

I have existing code that uses Ado.Net and am looking at integrating some new code that uses entity frameworks 5. As a proof of concept I wanted to try a transacted operation with BOTH ado.net and ...
1
vote
0answers
85 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 ...
3
votes
2answers
168 views

SQLTransaction has completed error

I got following error once in my application. This SQLTransaction has completed; it is no longer usable Stack Trace is attached below – It says about Zombie Check and Rollback. What is the ...
0
votes
1answer
104 views

Commiting inner transaction scope, while rolling back the outer transaction scope

I am trying to do the following in a highly concurrent system written in C#. Aquire row-lock on a data-item in transaction scope Do a lot of db-interaction if anyhing goes wrong Update locked ...
0
votes
3answers
103 views

What does a TransactionScope really do

Looking into it I verified that for example the value o "myInt" is not rolledback in the following scenario int myInt = 10; using (TransactionScope scope = new ...
1
vote
1answer
33 views

Cannot access Transaction in method

I've created an implicit transaction like so: Using ts As New TransactionScope(TransactionScopeOption.Required, New TimeSpan(1, 0, 0, 0)) MethodA() ts.Complete() End Using MethodA() in turn calls ...
2
votes
0answers
80 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 ...
6
votes
2answers
216 views

How can I create safe per-web-request transaction in .net's MVC?

I need to be all my entire application transactional in its every web request it processes. I need the transaction to start and, if there was no exceptions in controllers, commit it. Otherwise, ...
2
votes
1answer
117 views

TransactionScope Instead of using a lock

I currently have a method which reads data to determine if an update is needed, and then pushes the update to the database (dependency injected). The method is hit very hard, and I found concurrency ...
0
votes
1answer
52 views

Workflow Foundation and DTC transaction Rollback misbehavior

I'm testing the receive transaction scope in workflow foundation 4.5 and i think that there's something wrong with it! See when I roolback a transaction either by explicit roolback: using ...
0
votes
0answers
34 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 ...
1
vote
2answers
142 views

NetMsmqBinding: messages are being processed multiple times

My team has a windows service which host a wcf service using http binding. When the wcf service receives a message, it immediately sends it to another wcf service, using NetMsmqBinding, also hosted in ...
1
vote
3answers
145 views

using WebSercurity.CreateAccount with other queries in a TrasactionScope, without DTC Enabled

Problem. In a registration scenario, I'm trying to insert a user in my User table and then call WebSercurity.CreateAccount for that user (in a transaction). This causes the error that MS DTC is not ...
0
votes
1answer
210 views

Entity Framework TransactionScope not rolling back

I've got a Publication table and a Receipt table. When I publish data out, I track it in the Publication table. When my test client receives that publication back from the broker, I track it in the ...
1
vote
1answer
117 views

Does the first insert into a table effectively lock the entire table?

Scenario: TransactionScope(TransactionScopeOption.Suppress) query embedded within a wrapper TransactionScope(TransactionScopeOption.Required). Prior to the "Suppress" query there is another query ...
0
votes
1answer
128 views

Nested TransactionScope Rollback - Is it possible?

I am trying to wrap two TransactionScopes within another TransactionScope, but when I run the program and an error is triggered in the 2nd transaction scope, the 1st transaction is not rolled back. Is ...
3
votes
1answer
188 views

Change the TransactionScope IsolationLevel after completing the transaction

When i save data in the database i used TransactionScope with IsolationLevel set to Serializable. TransactionOptions options = new TransactionOptions { ...
1
vote
1answer
354 views

Doing transactions with Entity Framework Code First

There is an answer here to explain how to do transactions with Entity Framework However the solution does not work with code first. I have experimented and my tests indicate the following does work ...
0
votes
1answer
27 views

execute two different methods of ActiveRecords in one transactions

Is there any possible way to define a transaction for active record methods? I have Two activeRecords named as Answer and QuizMark which have tow method.I want say server to execute them as a ...
0
votes
1answer
65 views

linq2sql transactionscope timeout

I have added a transactionscope to a function that every night clears some tables and add the new items. The problem that I get the following error: Inner exception: Transaction Timeout The ...

1 2 3 4 5 11