14 references to Table
System.Data (14)
fx\src\data\System\Data\ConstraintCollection.cs (9)
113if (Table.primaryKey != null) { 141Table.PrimaryKey = ((UniqueConstraint)constraint).ColumnsReference; 155Table.PrimaryKey = columns; 167Table.PrimaryKey = constraint.ColumnsReference; 351for (int i = 0; i < Table.ChildRelations.Count; i++) { 352DataRelation rel = Table.ChildRelations[i]; 359for (int i = 0; i < Table.ParentRelations.Count; i++) { 360DataRelation rel = Table.ParentRelations[i]; 627Table.PrimaryKey = null;
fx\src\data\System\Data\ForeignKeyConstraint.cs (2)
175if (Table != constraints.Table) 176throw ExceptionBuilder.ConstraintAddFailed(constraints.Table);
fx\src\data\System\Data\UniqueConstraint.cs (3)
180if (this.Equals(constraints.Table.primaryKey)) { 181Debug.Assert(constraints.Table.primaryKey == this, "If the primary key and this are 'Equal', they should also be '=='"); 185throw ExceptionBuilder.RemovePrimaryKey(constraints.Table);