Enum OnDeleteAction
Represents an enum that determines the deletion behavior along relations. See also Sql Server Cascading delete actions.
Namespace: TimeCockpit.Data.DataModel
Assembly: TimeCockpit.Data.dll
Syntax
public enum OnDeleteAction
Fields
Name | Description |
---|---|
Cascade | Indicates that if a record that is referenced by other records, the other records are deleted before the referenced on. |
NoAction | Indicates that no action should be executed if a record is deleted which is referenced by other items. |