Tagged Questions
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 ...
1
vote
1answer
101 views
linq to sql transaction
I have the following code below with different calls to stored procedures.
My problem is that I want this to be in a transaction, so if one of the DB methods fails then it will automatically ...
0
votes
1answer
266 views
Does TransactionScope makes a cross process lock on the database in LinQ queries?
I got several applications run onto the one machine, also with an MSSQL server on that machine.
Applications are various typed, like WPF, WCF Service, MVC App and so on.
All of them accessing the ...
0
votes
2answers
607 views
TransactionScope functions
Working on Transactions in .net. Had a question on flowing transactions through sub functions. Do I need to use dependent transactions if the object context is common across the sub - methods?
For ...
0
votes
2answers
409 views
Integration tests - Rollbacking complex transactions
For integration testing purpose, we are savin data&reading data back from SQL. To avoid 'trash' in the test database, it runs in a transaction and rolled back.
While running this transaction, it ...
2
votes
3answers
1k views
TransactionScope throws exception
Im sure this is so basic question but i can't found any solution on google neither here.
when im trying to use that code block it throws an exception that
...
0
votes
1answer
4k views
Linq to sql multiple data context in same transaction
I am working on a project Where I have multiple reposetories to fetch data from
differnt tables. All my repositories are independent, they create new dataContext, Add row to table and apply submit ...
3
votes
1answer
3k views
Error Binding Gridview: “The current TransactionScope is already complete”
I am doing cascading deletes in an event sent from a Gridview. The deletes are in a Transaction. Here is the simplified code:
protected void btnDeleteUser_Click(object sender, EventArgs e)
{
...
1
vote
2answers
5k views
TransactionScope, linq and strange transaction manager issue (HRESULT: 0x8004D024)
I have a service level methods, which make few changes to database and I want them to use transaction control. Such methods can do following:
- LINQ SubmitChanges() functionality
- Calls to ...