Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
5k views

Refactoring ADO.NET - SqlTransaction vs. TransactionScope

I have "inherited" a little C# method that creates an ADO.NET SqlCommand object and loops over a list of items to be saved to the database (SQL Server 2005). Right now, the traditional ...
4
votes
2answers
578 views

Entity Framework Transaction With Multiple Threads

I have an application running multiple threads. The threads do NOT share an ObjectContext (each thread has its own - I know they are not thread safe). However, the threads are all operating under a ...
2
votes
3answers
523 views

Hierarchy of TransactionScope

Is it possible to have a hierarchy of transaction scopes? If the outer transaction scope does a dispose, what will happen to changes made in the inner transaction scope? My particular problem is ...
1
vote
1answer
37 views

WCF Distributed Transactions at serveral servers and one Database

There are two servers are running some services on WCF. All services are working with a shared database. All services use transport net.tcp with allowed transaction flows Problem appeared after we ...
1
vote
2answers
2k views

Entity Framework: Cannot access a disposed object. Transaction

We are using Entity Framework and running unit tests within a transaction scope. We were origianally getting the error in the title. I have managed to isolate the problem some what. using ...
1
vote
5answers
1k views

Transaction Scope

How does the transaction scope work? How does it know when there is another context being used already and how might I implement another kind of scope in my code. I'm primarily a vb.net developer ...
0
votes
3answers
198 views

Avoid enabling MSDTC when using TransactionScope

[Using: C# 3.5 + SQL Server 2005] I have some code in the Business Layer that wraps in a TransactionScope the creation of an order and its details: DAL.DAL_OrdenDeCompra dalOrdenDeCompra = ...
0
votes
0answers
34 views

Transaction Scope remains alive during multiple WCF request

We are using TransactionScope in our DAL layer(Flow - WCF -> BLL -> DAL). If we do not dispose the TransactionScope object, then in the subsequest request to WCf->DAL the TransactionScope object ...