The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
SqlCommand::Transaction Property
.NET Framework (current version)
Gets or sets the SqlTransaction within which the SqlCommand executes.
Assembly: System.Data (in System.Data.dll)
public: [BrowsableAttribute(false)] property SqlTransaction^ Transaction { SqlTransaction^ get(); void set(SqlTransaction^ value); }
Property Value
Type: System.Data.SqlClient::SqlTransaction^The SqlTransaction. The default value is null.
You cannot set the Transaction property if it is already set to a specific value, and the command is in the process of executing. If you set the transaction property to a SqlTransaction object that is not connected to the same SqlConnection as the SqlCommand object, an exception is thrown the next time that you attempt to execute a statement.
.NET Framework
Available since 1.1
Available since 1.1
Show: