2 overrides of Table
System.Data.Common (2)
System\Data\ForeignKeyConstraint.cs (1)
132public override DataTable? Table
System\Data\UniqueConstraint.cs (1)
429public override DataTable? Table
13 references to Table
System.Data.Common (13)
System\Data\Constraint.cs (7)
37if (string.IsNullOrEmpty(value) && (Table != null) && InCollection) 42CultureInfo locale = (Table != null ? Table.Locale : CultureInfo.CurrentCulture); 45if ((Table != null) && InCollection) 47Table.Constraints.RegisterName(value); 49Table.Constraints.UnregisterName(_name); 78_dataSet = value ? Table!.DataSet : null;
System\Data\ConstraintCollection.cs (1)
376if (constraint.Table != _table)
System\Data\DataColumnCollection.cs (2)
517throw ExceptionBuilder.CannotRemoveConstraint(_table.Constraints[i].ConstraintName, _table.Constraints[i].Table!.TableName); 529throw ExceptionBuilder.CannotRemoveConstraint(constraint.ConstraintName, constraint.Table!.TableName);
System\Data\Merger.cs (3)
486Constraint? cons = dest.Table!.Constraints.FindConstraint(dest); 494dest.Table.Constraints.Add(dest); 500dest.Table.Constraints.Add(dest);