//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // amirhmy // markash // jasonzhu //------------------------------------------------------------------------------ namespace System.Data { /// /// Indicates the action that occurs when a /// is enforced. /// public enum Rule { /// /// /// No action occurs. /// /// None = 0, /// /// /// Changes are cascaded through the relationship. /// /// Cascade = 1, /// /// /// Null values are set in the rows affected by the deletion. /// /// SetNull = 2, /// /// /// Default values are set in the rows affected by the deletion. /// /// SetDefault = 3 } }