TUpdatingArgs Class
Event arguments passed to the OnUpdating callback before an entity is updated.
Remarks
NewColumnValues and ChangedColumnNames can be modified to influence which columns are included in the UPDATE statement. Set RecalculateState to True to force the manager to re-compare entity state after the callback returns.
Syntax
Unit: Aurelius.Events.Manager
TUpdatingArgs = class(TEntityArgs);
Properties
| Name | Description |
|---|---|
| ChangedColumnNames | Gets or sets the names of the columns to be included in the UPDATE statement. |
| NewColumnValues | Gets or sets the column values that will be written by the pending update. |
| OldColumnValues | Gets the column values of the entity as they were before the pending update. |
| RecalculateState | Gets or sets whether the manager should recalculate the entity state after the callback returns. |