// // System.Data.Rule.cs // // Author: // Christopher Podurgiel (cpodurgiel@msn.com) // // (C) Chris Podurgiel // namespace System.Data { /// /// Indicates the action that occurs when a ForeignKeyConstraint is enforced. /// public enum Rule { Cascade, None, SetDefault, SetNull } }