DmForeignKeyAction ​
Namespace: MJCZone.DapperMatic.Models
Assembly: MJCZone.DapperMatic
Summary ​
Specifies the action to take on a foreign key constraint.
Inheritance ​
Base Class: Enum
sealed
public
Contents ​
Enum Members (4)
Enum Members ​
Name | Value | Description |
---|---|---|
NoAction | 0 | No action will be taken. |
Cascade | 1 | Delete or update the row from the parent table and automatically delete or update the matching rows in the child table. |
Restrict | 2 | Reject the delete or update operation for the parent table. |
SetNull | 3 | Set the foreign key column or columns in the child table to NULL. |