Sets a local transaction for the .NET Framework to use to access the database.
'Usage Dim instance As DataContext Dim value As DbTransaction value = instance.Transaction instance.Transaction = value 'Declaration Public Property Transaction As DbTransaction
The primary scenario for this property is interoperability with relational ADO.NET code. For example, use this property when you write your own Create/Update/Delete methods to set the Transaction property on the ADO Command object.
Note the following:
If this property has not been explicitly set, the getter returns null.
If the code is executing in a Transaction context, setting this property throws an exception.
If this property is set and a new Transaction is opened, an exception is thrown when a query or update is executed.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003