ForeignKeyAction Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
see fk syntax: | [ FOREIGN KEY ] REFERENCES [ schema_name . ] referenced_table_name [ ( ref_column ) ] [ ON DELETE { NO ACTION | CASCADE | SET NULL | SET DEFAULT } ] [ ON UPDATE { NO ACTION | CASCADE | SET NULL | SET DEFAULT } ]
public enum ForeignKeyAction
type ForeignKeyAction =
Public Enum ForeignKeyAction
- Inheritance
-
ForeignKeyAction
Fields
Name | Value | Description |
---|---|---|
NoAction | 0 | |
Cascade | 1 | |
SetNull | 2 | |
SetDefault | 3 |