BeginTransaction() Method

Syntax:

public RdmTransaction BeginTransaction()

Description:

The BeginTransaction method creates a new transaction that can be used to combine changes into a unit that can be committed or discarded all together. There can only be one transaction active per connection.

This method creates a transaction with a system generated name and the default isolation level (IsolationLevel.Serializable).

Parameters:

None

Return Value:

Type: RdmTransaction

Exceptions:

Exception Condition
InvalidOperationException The connection is closed.
InvalidOperationException A transaction is already in progress.

Reference:

For more information, reference MSDN documentation for: System.Data.Common.DbConnection.BeginTransaction