Session Events
The session that is used to load and save persistent objects.Name | Description |
---|---|
After |
Occurs after a transaction (a database level transaction in an explicit unit of work) has been started tracking changes made to persistent objects. |
After |
Occurs after a transaction has been started via the BEGIN operation. |
After |
Fires after the nested unit of work has been committed. |
After |
Occurs after a transaction has been completed via the COMMIT operation. |
After |
Occurs after a connection to a database has been established. |
After |
Occurs when a connection to a database is closed. |
After |
Occurs after a list of tracked changes has been cleared. |
After |
Occurs after tracked changes have been temporarily saved to a data store. |
After |
Occurs after a transaction has been completed via the ROLLBACK operation. |
Before |
Occurs when a transaction (a database level transaction in an explicit unit of work) is about to be started to track changes made to persistent objects. |
Before |
Occurs when a transaction is about to be started via the BEGIN operation. |
Before |
Fires before the nested unit of work is committed. |
Before |
Occurs when a transaction is about to be completed via the COMMIT operation. |
Before |
Occurs before the connection to a database is established. |
Before |
Occurs before the connection to a database is detached. |
Before |
Occurs when a list of tracked changes is about to be cleared. |
Before |
Occurs when tracked changes are about to be temporarily saved to a data store. |
Before |
Fires after the Session. |
Before |
Occurs when a transaction is about to be completed via the ROLLBACK operation. |
Before |
Obsolete. Occurs before a persistent object is saved in storage. |
Disposed | Occurs when the component is disposed by a call to the Dispose() method. Inherited from Component. |
Failed |
Occurs when the Commit Transaction operation fails due to database constraints or other circumstances. |
Failed |
Occurs when the Flush Changes operation fails due to database constraints or other circumstances. |
Object |
Occurs after an object’s property has been changed. |
Object |
Occurs after an object has been deleted. |
Object |
Occurs when an object is about to be deleted. |
Object |
Occurs after an object’s properties have been initialized with values from a data store. |
Object |
Occurs when an object’s properties are about to be initialized with values from a data store. |
Object |
Occurs after an object has been saved to a data store. |
Object |
Occurs when an object is about to be saved to a data store. |
Objects |
Occurs after persistent objects have been initialized with values from a data store. |
Objects |
Occurs after persistent objects have been saved to a data store. |
See Also