| AbstractDatabaseAbstracterBeginTransaction Method (IsolationLevel) |
Puts the abstracter in transaction mode using the given isolation level.
From this point, and until a call to
Commit or
Rollback, all SQL requests will be executed on the same connection and transaction.
Namespace: Activsoft.Engine.DbAssembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntaxpublic void BeginTransaction(
IsolationLevel level
)
Public Sub BeginTransaction (
level As IsolationLevel
)
public:
virtual void BeginTransaction(
IsolationLevel level
) sealed
abstract BeginTransaction :
level : IsolationLevel -> unit
override BeginTransaction :
level : IsolationLevel -> unit Parameters
- level
- Type: System.DataIsolationLevel
The IsolationLevel to use
Implements
IDatabaseAbstracterBeginTransaction(IsolationLevel)
See Also