Click or drag to resize

RGTransactionalBehavior Enumeration

Controls the transaction creation behavior while executing a database command or query.

Namespace:  Recrovit.RecroGridFramework.Data
Assembly:  Recrovit.RecroGrid (in Recrovit.RecroGrid.dll) Version: 6.0.0
Syntax
C#
public enum RGTransactionalBehavior
Members
  Member nameValueDescription
Default0 The default.
EnsureTransaction1 If no transaction is present then a new transaction will be used for the operation.
DoNotEnsureTransaction2 If an existing transaction is present then use it, otherwise execute the command or query without a transaction.
See Also