Name

Constraint

Synopsis

This abstract class represents a rule that can be placed on one or more DataColumn objects. ADO.NET includes two derived constraint classes: ForeignKeyConstraint and UniqueConstraint. Constraints aren’t enforced unless the EnforceConstraints property of the DataSet is true.

public abstract class Constraint {

// Protected Constructors

   protected Constraint( );

// Public Instance Properties

   public virtual string ConstraintName{set; get; } 

   public PropertyCollection ExtendedProperties{get; } 

   public abstract DataTable Table{get; }

// Protected Instance Properties

   protected internal virtual DataSet _DataSet{get; } 

// Public Instance Methods

   public override string ToString( );                          // overrides object

                  // Protected Instance Methods

   protected void CheckStateForProperty( );  

   protected internal void SetDataSet(DataSet dataSet);  

}

Subclasses

ForeignKeyConstraint, UniqueConstraint

Returned By

ConstraintCollection.{Add( ), this}

Passed To

ConstraintCollection.{Add( ), AddRange( ), CanRemove( ), IndexOf( ), Remove( )}

Get ADO.NET in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.