1 write to table
System.Data (1)
fx\src\data\System\Data\ConstraintCollection.cs (1)
39this.table = table;
23 references to table
System.Data (23)
fx\src\data\System\Data\ConstraintCollection.cs (23)
69return table; 105if (1 < table.NestedParentRelations.Length) { 107throw ExceptionBuilder.CantAddConstraintToMultipleNestedTable(table.TableName); 195if (table.fInitInProgress) { 215if (columns[i].Table != this.table) { 343if (constraint.Table != table) { 384if (table != null) { 385table.PrimaryKey = null; 387for (int i = 0; i < table.ParentRelations.Count; i++) { 388table.ParentRelations[i].SetChildKeyConstraint(null); 390for (int i = 0; i < table.ChildRelations.Count; i++) { 391table.ChildRelations[i].SetParentKeyConstraint(null); 395if (table.fInitInProgress && delayLoadingConstraints != null) { 562result = NamesEqual(constraint.ConstraintName, constraintName, false, table.Locale); 602if (NamesEqual(name, ((Constraint)List[i]).ConstraintName, true, table.Locale) != 0) { 606if (NamesEqual(name, MakeName(defaultNameIndex), true, table.Locale) != 0) { 661if (NamesEqual(name, MakeName(defaultNameIndex - 1), true, table.Locale) != 0) { 688parents[j] = table.Columns[constr.columnNames[j]]; 690if (table.primaryKey != null) { 709if (table.DataSet == null) { 719parents[j] = table.DataSet.Tables[constr.parentTableName].Columns[constr.parentColumnNames[j]]; 721parents[j] = table.DataSet.Tables[constr.parentTableName, constr.parentTableNamespace].Columns[constr.parentColumnNames[j]]; 722childs[j] = table.Columns[constr.childColumnNames[j]];