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