EasyObjects.NET Programmers Reference

TransactionManager.BeginTransaction Method 

Starts a new transaction scope

public void BeginTransaction();

Remarks

BeginTransaction should always be a followed by a call to CommitTransaction if all goes well, or RollbackTransaction if problems are detected. BeginTransaction() can be nested any number of times as long as each call is unwound with a call to CommitTransaction().

Exceptions

Exception Type Condition
InvalidOperationException Thrown when the transaction has already been rolled back.

See Also

TransactionManager Class | NCI.EasyObjects Namespace