TransactionBase Class |
Namespace: SD.LLBLGen.Pro.ORMSupportClasses
The TransactionBase type exposes the following members.
Name | Description | |
---|---|---|
TransactionBase(IsolationLevel, String) |
CTor. Will read the connection string from an external source.
| |
TransactionBase(IsolationLevel, String, String) |
CTor.
|
Name | Description | |
---|---|---|
ConnectionString |
Gets the connection string used for the connection with the database. Only settable with the constructor.
| |
ConnectionToUse |
The connection object to use with this transaction.
| |
EntitiesInTransaction |
List of GUID's of the entities currently participating in this transaction. This collection is
used to keep track of which entities already have been added during a recursive save.
| |
InSystemTransaction |
Gets a value indicating whether a System.Transactions transaction is going on. If not, false is returned.
| |
Name |
Gets the name of the transaction. Only settable with the constructor.
| |
PhysicalTransaction |
The physical transaction object used over ConnectionToUse.
| |
TransactionIsolationLevel |
Gets the isolation level the transaction should use. Only settable with the constructor.
|
Name | Description | |
---|---|---|
Add |
Adds the passed in object as a participant of this transaction.
| |
AddAuditor |
Adds the auditor passed in to the set of auditors to get audit entities from at commit.
| |
Commit |
Commits the transaction in action. It will end all database activity, since commiting a transaction is finalizing it. After
calling Commit or Rollback, the ITransaction implementing class will reset itself. When used in combination of COM+, it will
call ContextUtil.SetCommit() to commit the current COM+ transaction.
| |
CreateConnection |
Creates a new DbConnection instance which will be used by all elements using this ITransaction instance.
Reads connectionstring from .config file.
| |
CreateConnection(String) |
Creates a new DbConnection instance which will be used by all elements using this ITransaction instance
| |
Dispose |
Implements the IDispose' method Dispose.
| |
Dispose(Boolean) |
Implements the Dispose functionality.
| |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
OnBeforeCommit |
Called right before the physical transaction is committed.
| |
OnBeforeRollback |
Called right before the physical transaction is rolled back.
| |
Remove |
Removes the passed in object from the transaction.
| |
Rollback |
Rolls back the transaction in action. It will end all database activity, since commiting a transaction is finalizing it. After
calling Commit or Rollback, the ITransaction implementing class will reset itself. When used in combination of COM+, it will
call ContextUtil.SetAbort() to abort (rollback) the current COM+ transaction.
| |
Rollback(String) |
Rolls back the transaction in action to the savepoint with the name savepointName. No internal objects are being reset when this method is called,
so call this Rollback overload only to roll back to a savepoint. To roll back a complete transaction, call Rollback() without specifying a savepoint
name. Create a savepoint by calling Save(savePointName)
| |
Save |
Creates a savepoint with the name savePointName in the current transaction. You can roll back to this savepoint using
Rollback(String).
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
TransactionCommitted |
Raised when Commit was successful.
| |
TransactionRolledback |
Raised when Rollback was successful.
|
Name | Description | |
---|---|---|
ITransactionControllerIsTransactionInProgress |
Gets IsTransactionInProgress. True when there is a transaction in progress.
|