transactionscope
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).[详细]
2023-03-04 06:43 分类:问答TransactionScope: How do I Read back the results of a committed transaction?
I want to do work in a distributed transaction, commit it, then be able to read the results. Something like:[详细]
2023-03-03 14:17 分类:问答Problems with TransactionScope in ASP.NET
I\'ve build a class to synchronize data between two different datasources. This synchronization is divided into multiple parts (and methods). Every method has his own TransactionSco开发者_StackOverflo[详细]
2023-03-02 21:45 分类:问答TransactionScope always tries to promote to MSDTC
I am trying to use a transaction scope inside a loop.The entire loop 开发者_StackOverflowtakes place using a single connection to the database.I am using entity framework 4 for database access.During[详细]
2023-03-02 21:14 分类:问答Transaction and ASP.NET Membership API
Hope someone of you have been there. I need to do some database stuff which involve multiple tables. I am using SubSonic 3 SimpleRepository to update/access records. Now in between calls to update tab[详细]
2023-03-01 14:34 分类:问答How to correctly exclude logging from TransactionScope in .Net
I have some code like this: using (var scope = GetTransactionScope()) { ... do stuff InfoLogger.LogInformation(\"blah blah\", \"Blah blah\", someEventId);[详细]
2023-03-01 03:10 分类:问答Spring's NamedParameterJDBCTemplate join Hibernate's session?
Long story below short question: How can I get Spring\'s NamedParameterJDBCTemplate join Hibernate\'s session?[详细]
2023-02-27 03:22 分类:问答Transactionscope and deadlocks when using enterprise library
We are using Enterprise Library for data access. One of our methods has a de开发者_StackOverflow社区lete and then an insert, against the same table. This gives a deadlock.[详细]
2023-02-24 12:24 分类:问答Alternative to Save point when using System.Transactions
How can I use classes from System.Transactions namespace to achieve similar effect as I can get when using SqlTransaction.Save(savePoint) and SqlTransaction.Rollback(savePoint). The effect of using th[详细]
2023-02-19 03:20 分类:问答TransactionScope across AppDomains and processes
Is it real to use System.Transactions (primarily TransactionScope) across different AppDomains and processes?[详细]
2023-02-18 09:36 分类:问答