I have some VB.NET code that creates a TransactionScope instance: LoggingUtility.LogDebug(\"UpdateCallTable\", \"SatComCallDataImporter\", \"About to associate call data with contracts\")
I\'m working on a .Net 2.0 application and need to wrap some database transactions in my code.The backend is SQL Server 2008.
I\'m not sure whether it is right to ask it here...I searched the net for an answer, But in vain... So I just wanted to try my luck here.
In our project we\'re using TransactionScope\'s to ensure our data access layer performs it\'s actions in a transaction. We\'re aiming to not require the MSDTC service to be enabled on our end-user\'s
I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx
I need to do something like this select * from my开发者_JAVA技巧Table with (xlock,holdlock) using Entity Framework. Is this possible? I\'ve opened a TransactionScope with the Serializable isolation
Here\'s a very simple example using SQL Server CE 3.5 SP1 where I attempt to use a new transaction inside an existing one.