ITransactionalElement Interface |
Namespace: SD.LLBLGen.Pro.ORMSupportClasses
The ITransactionalElement type exposes the following members.
Name | Description | |
---|---|---|
ParticipatesInTransaction |
Flag to check if the ITransactionalElement implementing object is participating in a transaction or not.
| |
Transaction |
The ITransaction this ITransactionalElement implementing object is participating in. Only valid if
ParticipatesInTransaction is true. If set to null, the ITransactionalElement is no longer participating
in a transaction.
|
Name | Description | |
---|---|---|
TransactionCommit |
When the ITransaction in which this element participates is commited, this element can succesfully finish actions performed by this
element. This method is called by ITransaction, you should not call it by yourself. When this element doesn't participate in a
transaction it finishes the actions itself, calling this method is not needed.
| |
TransactionRollback |
When the ITransaction in which this element participates is rolled back, this element has to roll back its internal variables.
This method is called by ITransaction, you should not call it by yourself.
|