Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the DbTransaction object currently being used by the current connection support instance.
Namespace: Microsoft.VisualStudio.Data.Framework.AdoDotNet
Assembly: Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)
Syntax
'Declaration
Protected Property CurrentTransaction As DbTransaction
'Usage
Dim value As DbTransaction
value = Me.CurrentTransaction
Me.CurrentTransaction = value
protected DbTransaction CurrentTransaction { get; set; }
protected:
property DbTransaction^ CurrentTransaction {
DbTransaction^ get ();
void set (DbTransaction^ value);
}
protected function get CurrentTransaction () : DbTransaction
protected function set CurrentTransaction (value : DbTransaction)
Property Value
Type: System.Data.Common.DbTransaction
A DbTransaction object instance, or nulla null reference (Nothing in Visual Basic) if not currently in a transaction.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
AdoDotNetConnectionSupport Class