Enum ForeignTruncateOptions
Represents the truncate option for foreign keys.
Namespace: Venflow.Enums
Assembly: Venflow.dll
Syntax
public enum ForeignTruncateOptions : byte
Fields
Name | Description |
---|---|
Cascade | Automatically truncate all tables that have foreign-key references to any of the named tables, or to any tables added to the group due to CASCADE. |
None | Does nothing. |
Restrict | Refuse to truncate if any of the tables have foreign-key references from tables that are not listed in the command. This is the default. |