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

0
votes
4answers
191 views

Non Transactional Execution Within a TransactionScope

I am executing multiple stored procedures from within a TransactionScope. Is there any way to execute a SqlCommand (while still within the scope of the using statement) but remove it from the ...
0
votes
2answers
148 views

TransactionScope issue

I have in DB the mapped table with id 7, field Taex with value "qwe" in this code: var fooObj = Foo.GetById(7); fooObj.Taex = "abc"; using (new TransactionScope(OnDispose.Rollback)) { var ...
1
vote
2answers
522 views

Does TransactionScope work with pre-existing connections?

I have a code like this: try { using (TransactionScope scope = new TransactionScope()) { some_db_function(); for (i = 0; i < 10; i++) { ...
2
votes
1answer
868 views

How to get EF Code First DbContext Transaction row identity?

Is it possible to get the identity of a record after the SaveChanges method but prior to the TransactionScope.Complete call using the DbContext? Do we need to cast to ObjectContext to get this ...
0
votes
1answer
788 views

'dirty read' not working during transaction scope set with readuncommitted isolation level

I have a code that goes something like this: using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required), new TransactionOptions) { IsolationLevel = ...
0
votes
2answers
1k views

C# - TransactionScope - TransactionAbortedException - The transaction has aborted

I've code like that: class Importer { private DatabaseContext m_context; public: Importer() { m_context = new DatabaseContext(); m_context.CommandTimeout = 5400; //This is seconds } public ...
4
votes
2answers
998 views

Does TransactionScope Need DTC Service on?

From what I'm reading, in order to use TransactionScope in .NET, you need the Distributed Transaction Coordinator service in Windows to be running. I have that service turned off, and my app seems to ...
1
vote
1answer
166 views

Entity framework serial transaction takes too much time to complete

I am writing a serial transaction and had some troubles. If I only execute one thread, it executes fast, no waiting. If I execute two or more threads, the first thread that complete takes too much ...
1
vote
0answers
229 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 ...
0
votes
2answers
1k views

Spring Propagation.REQUIRES_NEW @Transaction commit appears in log only after outter transaction end

I have a transactional methods invoking each other but it seems that transaction commits after the spot it should commit or at least insertion logs appear after that. Here is the call hierachy: ...
1
vote
1answer
210 views

NHIbernate IHttpModule and TransactionScope

Just wondering what other's thoughts are on using a TransactionScope in an IHttpModule. For example: BeginRequest //start new TransactionScope // start UOW // Begin UOW transaction // do some ...
1
vote
2answers
170 views

Determining if a TransactionScope is committed or not

Using .net 2 and ADO.NET. Is there a way to determine if a transaction is committed or not? The reason is that I'm stuck with a legacy framework that I cannot alter and there might or might not be an ...
2
votes
1answer
567 views

sql transactionscope row level locking

Question on locking scope in SQL Server (SQL Azure to be precise). Scenario A bunch of records are selected using a select statements. We loop through the records Each record is updated within a ...
0
votes
2answers
169 views

How does TransactionScope work with multiple queries?

I am using TransactionScope and then saving the data in database. Within the same transaction after data save, I am changing the value of object sent to save. Now my question is: will it save ...
2
votes
1answer
178 views

Use same db connection across multiple activities wrapped in a TransactionScope in Windows Workflow Foundation?

In Windows Workflow Foundation I want to wrap multiple code activities inside a TransactionScope activity. The code activities has SQL code that inserts data into the database. I want to open a ...
2
votes
1answer
3k views

Deadlocks w/Entity Framework - how to rerun the transaction?

Got a bit of a tough situation here: we're experiencing occasional deadlocks in our system. And I don't have a strong background in database concurrency at all. System.Data.SqlClient.SqlException: ...
1
vote
1answer
255 views

asp.Net TransactionScope error

Here is my coding using (TransactionScope scope = new TransactionScope()) { using (DataAccess.Document Access = new DataAccess.Document()) { if ...
4
votes
2answers
462 views

EF4, TransactionScope and Task<>

Is it possible to open a TransactionScope, run a load of async Tasks which operate on an EF4 ObjectContext, and then commit the result? How is the current transaction scope inferred in EF4? Will this ...
2
votes
1answer
151 views

Transactionscope and webHttpBinding

I have a WCF REST service. I would like to write integration tests for the operations. I was thinking to write those by using HttpWebRequest (as described in Why does my C# client, POSTing to my WCF ...
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
1answer
100 views

TransactionScope incorrectly commiting the transaction

I have the following method in my DAL: public void SavePlan() { using (TransactionScope scope = new TransactionScope(TransactionScopeOption.RequiresNew)) { ...
0
votes
1answer
195 views

TransactionScope error “ExecuteNonQuery requires an open and available Connection” in C# [duplicate]

Possible Duplicate: asp.Net TransactionScope error whenever I put TransactionScope, I got this error. ExecuteNonQuery requires an open and available Connection. The connection's current ...
3
votes
2answers
1k views

Understanding Transactions in Entity Framework

Hi I am trying to use transactions along with Entity Framework. With so much information available online on the different ways to implement transactions I must say I am a bit confused on the right ...
1
vote
1answer
569 views

DataContext connection closed or transaction completed unexpectedly while submitting changes within a TransactionScope transaction?

Code double timeout_in_hours = 6.0; MyDataContext db = new MyDataContext(); using (TransactionScope tran = new TransactionScope( TransactionScopeOption.Required, new TransactionOptions(){ ...
5
votes
4answers
549 views

Is it possible to rollback committed data with TransactionScope?

The goal is simple - rollback data inserted by a unit test. Here is how it goes. In a unit test, a method is called that creates a new connection and inserts some data. After that a unit test creates ...
0
votes
1answer
177 views

Linq2Sql DataContext and TransactionScope, nested the wrong way?

In our current project it has occurred that we sometimes nest the creation of a DataContext and TransactionScope like this: using(var dc = OurDataContext.CreateInstance()) { DoSomething(dc); ...
5
votes
2answers
575 views

TransactionScope not working with Parallel Extensions?

If i do the following: Using scope = New TransactionScope() entries.Content.ReadAs(Of IList(Of WebMaint)).AsParallel.ForAll(Sub(entry) ...
1
vote
1answer
499 views

How can I use TransactionScope with SQL Compact 4.0 and NHibernate

I am trying to use NHibernate in combination with .NET's TransactionScope object. So far I have successfully used Oracle 11g and SQL Server 2008R2 with no issues. However, SQL Compact seems to fall ...
0
votes
2answers
382 views

TransactionScope And Function Scope- Are These Connections In-Scope?

Suppose you set up a TransactionScope object as illustrated per the Microsoft example here. Now suppose that you need to update a lot of database tables, and you want them all in the scope of the ...
2
votes
1answer
370 views

nLog and TransactionScope

I have an ASP.NET MVC 3 (using Entity Framework 4.2) application that uses transactions as follows: using (var transaction = new TransactionScope()) { // Database action 1 // Database action ...
1
vote
1answer
317 views

Nested TransactionScope with threads, with and without an outer transactionScope

I have atomic writes (inserts, updates) to the database layer which will be called in a variety of ways: Sometimes they will be called atomically, in which case the code must create a new ambient ...
1
vote
1answer
155 views

Transaction scope with pooling in Linq2Sql

If I have pooling in the connection string set to true the following code works fine. If turned of it fails with: "MSDC is unavailable". Is it just pure luck that both DataContext's picks the same ...
3
votes
2answers
785 views

What to use - SqlTransaction or TransactionScope in my architecture

We are using 3 layered architechture which contains SqlHelper -> DAL(Data access layer) -> BAL -> UI Any class within a DAL can call another DAL same way any BAL can call another BAL or DAL of its ...
3
votes
2answers
1k views

“The transaction has already been implicitly or explicitly committed or aborted” in transaction scope

I have a web server and two DB servers on two different networks, Db1 and Db2(Remote Database). DB1: SQL Server 2008 R2, operating system: Windows Server 2003 SP2 DB2: SQL Server 2000, operating ...
0
votes
3answers
90 views

Java springframework: transaction semantics

In spring framework, there is transaction semantics: PROPAGATION_REQUIRED, ISOLATION_ONLY. What does that mean?
1
vote
2answers
238 views

Transaction scope function

I am using the below code to apply the transaction scope TransactionOptions transOption = new TransactionOptions(); transOption.IsolationLevel = System.Transactions.IsolationLevel.ReadUncommitted; ...
1
vote
0answers
442 views

TransactionScope and Npgsql - Prepared Transaction Issue

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

Transaction Timeout exception in a console app running series containing series of SPs

I have got a console application in which I have couple of stored procedures called inside the transaction scope which looks as below. using (TransactionScope scope = new TransactionScope(new ...
4
votes
2answers
907 views

.NET TransactionScope Timeout Issue/ EF

I have a WinForms project where i have to read massive xml-files (2gb+) and store the data in a MSSQL database. After 10 minutes i get the error: "The transaction associated with the current ...
0
votes
1answer
1k views

Transaction scope with multiple connections

I have a process that requires a rollback of all updates and inserts should there be an error during any phase. So i wanted to use the TransactionScope class to accomplish this. Here is my code: ...
2
votes
1answer
861 views

Database transactions in Zend Framework: Are they isolated?

Using Zend Framework, I need to (1) read a record from a MySQL database, and (2) immediately write back to that record to indicate that it has been read. I don't want other processes or queries to be ...
1
vote
0answers
230 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 ...
2
votes
2answers
179 views

Transaction in Stored Proc + Client Code

I have a SQL Server Stored Procedure that creates a TRANSACTION like this: BEGIN TRY BEGIN TRANSACTION INSERT INTO Table1 ... INSERT INTO Table2 ... COMMIT END TRY BEGIN CATCH ...
1
vote
1answer
231 views

Using TransactionScope multiple times

Is this the correct way to use a transaction scope: I have an object which represents part of a thing: public class ThingPart { private DbProviderFactory connectionFactory; public void ...
3
votes
2answers
786 views

NOLOCK with Linq to SQL without setting Transaction IsolationLevel

Is there a way to use NOLOCK on a LIN2SQL single query without setting the Transaction IsolationLevel? I need to do this as the query part of a larger (distributed) transaction. For example: using ...
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 ...
0
votes
1answer
246 views

Can I use both session-per-web-request and TransactionScope?

You know, to implement session-per-web-request in a web application we often create a session in Application_BeginRequest and close it in Application_EndRequest global event handlers. And then every ...
4
votes
1answer
482 views

ASP.NET and ThreadStatic as part of TransactionScope's implementation

I was wondering how TransactionScope class works to keep the transaction between different method calls (without the need to pass it as a parameter) and I came to this doubt. I've got two ...
14
votes
2answers
916 views

Linq: Delete and Insert same Primary Key values within TransactionScope

I want to replace existing records in the DB with new records in one transaction. Using TransactionScope, I have using ( var scope = new TransactionScope()) { ...
1
vote
2answers
355 views

Help with TransactionScope in EF4

I am new to TransactionScope. I Just want to make sure what i am doing is correct in the code below. private void DoSomeWork() { using (var context = new MyEntities()) using (TransactionScope ...

1 3 4 5 6 7 11