System.Data.SqlClient.SqlTransaction
Represents a Transact-SQL transaction to be made in a SQL Server database. This class cannot be inherited.
namespace System.Data.SqlClient
{
public sealed class SqlTransaction : DbTransaction
{
public new SqlConnection Connection { get; }
public new void Rollback(string transactionName);
public new void Save(string savePointName);
}
}