c# Programming Glossary: transactionscope
TransactionScope automatically escalating to MSDTC on some machines? http://stackoverflow.com/questions/1690892/transactionscope-automatically-escalating-to-msdtc-on-some-machines automatically escalating to MSDTC on some machines In our project.. to MSDTC on some machines In our project we're using TransactionScope's to ensure our data access layer performs it's actions in a.. has me seriously considering rolling back to a home spun TransactionScope like solution based on ADO.NET transaction objects. It's seemingly..
Fastest Way of Inserting in Entity Framework http://stackoverflow.com/questions/5940225/fastest-way-of-inserting-in-entity-framework this because of the scenario where you have an active TransactionScope and the insertion is Huge 4000 it can potentially last more.. working and experimenting with a pattern like this using TransactionScope scope new TransactionScope MyDbContext context null try context.. with a pattern like this using TransactionScope scope new TransactionScope MyDbContext context null try context new MyDbContext context.Configuration.AutoDetectChangesEnabled..
Entity Framework - Using Transactions or SaveChanges(false) and AcceptAllChanges()? http://stackoverflow.com/questions/815586/entity-framework-using-transactions-or-savechangesfalse-and-acceptallchanges Identity value. Is there any reason to use the standard TransactionScope class in my code c# entity framework transactions share improve.. two different Contexts. I.e. something like this bad using TransactionScope scope new TransactionScope Do something with context1 Do something.. something like this bad using TransactionScope scope new TransactionScope Do something with context1 Do something with context2 Save and..
TransactionScope automatically escalating to MSDTC on some machines? http://stackoverflow.com/questions/1690892/transactionscope-automatically-escalating-to-msdtc-on-some-machines http msdn.microsoft.com en us library system.transactions.transactionscope 28VS.80 29.aspx read that code sample it clearly demonstrates.. and closing it as soon as possible. c# .net transactions transactionscope msdtc share improve this question SQL2008 can use multiple..
Data committed even though System.Transactions.TransactionScope.Commit() not called http://stackoverflow.com/questions/1707566/data-committed-even-though-system-transactions-transactionscope-commit-not-cal the ambient TransactionScope or not c# .net transactions transactionscope share improve this question The answer turned out to be..
C# - System.Transactions.TransactionScope http://stackoverflow.com/questions/2273419/c-sharp-system-transactions-transactionscope operations transactional. c# .net transactions transactionscope share improve this question TransactionScope is not only..
TransactionScope With Files In C# http://stackoverflow.com/questions/2289395/transactionscope-with-files-in-c-sharp point me to an related article c# file transactions scope transactionscope share improve this question You're looking for Transactional..
Under what circumstances is an SqlConnection automatically enlisted in an ambient TransactionScope Transaction? http://stackoverflow.com/questions/2884863/under-what-circumstances-is-an-sqlconnection-automatically-enlisted-in-an-ambien than the current transaction scope. Yes c# ado.net transactionscope sqlconnection sqlcommand share improve this question I've..
TransactionScope Prematurely Completed http://stackoverflow.com/questions/2921920/transactionscope-prematurely-completed sqlCommand.ExecuteNonQuery c# sql server ado.net deadlock transactionscope share improve this question If an exception happens inside..
How does TransactionScope roll back transactions? http://stackoverflow.com/questions/494550/how-does-transactionscope-roll-back-transactions to roll back transactions c# .net nhibernate transactions transactionscope share improve this question Essentially TransactionScope..
How do I use TransactionScope in C#? http://stackoverflow.com/questions/794364/how-do-i-use-transactionscope-in-c properties on the server c# .net database transactions transactionscope share improve this question You need to enable network DTC..
Is there a way to use TransactionScope with an existing connection? http://stackoverflow.com/questions/934316/is-there-a-way-to-use-transactionscope-with-an-existing-connection in the .Net framework for this purpose c# transactions transactionscope share improve this question In fact there is one way. connection.EnlistTransaction..
|