Click or drag to resize

Actions Enumeration

Action for data item

Namespace:  SOWIData
Assembly:  SOWIData (in SOWIData.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax
public enum Actions
Members
  Member nameValueDescription
None0 No action defined
Append1 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.

Edited2 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.

Remove3 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.

Read4 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.

Create5 Is action when data item instance created.

Example: constructor from basic data class DataStandard

Using: usually as event parameter Action.

Insert6 Is action when data item is saving in database

Using: usually as event parameter Action.

Added7 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.

Update8 Is action when data item is updating in database

Using: usually as event parameter Action.

Modified9 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.

Delete10 Is action when data item is deleting in database

Using: usually as event parameter Action.

Deleted11 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.

Remarks
Action value is stored in database field ActionText
See Also