SqlTransaction.Connection Property

Definition

Gets the SqlConnection object associated with the transaction, or null if the transaction is no longer valid.

public:
 property System::Data::SqlClient::SqlConnection ^ Connection { System::Data::SqlClient::SqlConnection ^ get(); };
public System.Data.SqlClient.SqlConnection Connection { get; }
member this.Connection : System.Data.SqlClient.SqlConnection
Public ReadOnly Property Connection As SqlConnection

Property Value

The SqlConnection object associated with the transaction.

Remarks

A single application may have multiple database connections, each with zero or more transactions. This property lets you determine the connection object associated with a particular transaction created by BeginTransaction.

Applies to

See also