Actions Enumeration |
Namespace: SOWIData
Member name | Value | Description | |
---|---|---|---|
None | 0 | No action defined | |
Append | 1 |
Is action when a new data item appended into the data list and not yet insert in the database.
Note: not all processing puts this value. Using: data processing of user interface. | |
Edited | 2 |
Is action when data item edited and not yet updated in the database.
Note: not all processing puts this value. Using: data processing of user interface. | |
Remove | 3 |
Is action when data item remove from the data list and not yet delete in the database.
Note: not all processing puts this value. Using: data processing of user interface. | |
Read | 4 |
Is action for all Get* methods or event parameter Action.
Note: not all processing puts this value on data item property Action (performance). Using: usually as event parameter Action. | |
Create | 5 |
Is action when data item instance created.
Example: constructor from basic data class DataStandard Using: usually as event parameter Action. | |
Insert | 6 |
Is action when data item is saving in database
Using: usually as event parameter Action. | |
Added | 7 |
Is action when data item is saved in database
Example: method Insert: puts this action just before System.Data.EntityState.Added and SaveChanges Using: usually as event parameter Action. | |
Update | 8 |
Is action when data item is updating in database
Using: usually as event parameter Action. | |
Modified | 9 |
Is action when data item is updated in database
Example: method Update: set this action just before System.Data.EntityState.Modified and SaveChanges Using: usually as event parameter Action. | |
Delete | 10 |
Is action when data item is deleting in database
Using: usually as event parameter Action. | |
Deleted | 11 |
Is action when data item is deleted in database (Status)
Example: method Delete: set this action just before SaveChanges Using: usually as event parameter Action. |