transactionscope
TransactionScope - IEnlistmentNotification
If create a custom of IEnlistmentNotification is it possible to make it the开发者_C百科 first implementation executed when TransactionScope.Commit is called?If your enlistment depends on the order com[详细]
2023-01-12 02:09 分类:问答Transactions in LINQ To SQL
I am using LINQ To SQL and calling stored procedures to insert the new rows. Does the code below demonstrate an appropriate set of steps?[详细]
2023-01-11 06:36 分类:问答How can I force TransactionScope to use the same connection across Database calls?
Good Morning All, I have code similar to the following try{ using(var tx = new TransactionScope()){ var Xupdated= someDao.DoSomeUpdateQuery(); //this dao uses MS Data ApplicationBlock[详细]
2023-01-09 15:08 分类:问答Active Record/Nhibernate TransactionScopes problems
This question is purely AR related. Let\'s say I have 2 layers in my web/wcf application - DataLayer and BusinessLayer.[详细]
2023-01-08 20:20 分类:问答Is there a way to check if code is executed in a TransactionScope?
Is there 开发者_开发问答a way to check if code is executed in a TransactionScope? Something like:[详细]
2023-01-08 07:04 分类:问答Difference between Transaction Scope and manually defined transactions?
Hi just reading about using transaction scrope, previously I am used to making transactions inside a single DB class like[详细]
2023-01-08 03:58 分类:问答Problems with TransactionScope and Oracle
we have written a C# 3.5 client talking to an Oracle database (11g) using the ODP.NET. This application has a batch process where a long running task is performed making various calls to the database[详细]
2023-01-07 07:01 分类:问答TransactionScope: Avoiding Distributed Transactions
I have a parent object (part of a DAL) that contains, amongst other things, a collection (List<t>) of child objects.[详细]
2023-01-06 01:54 分类:问答What is the best way to rollback a .net transaction?
This question is related to my question: SQL Server and TransactionScope (with MSDTC): Sporadically can't get connection[详细]
2023-01-04 17:27 分类:问答What are the good and bad points of TransactionScope?
What a开发者_高级运维re the good and bad points of the TransactionScope class in C#? Thanks.Some advantages from MSDN :[详细]
2023-01-04 08:18 分类:问答