2 overrides of Table
System.Data (2)
fx\src\data\System\Data\ForeignKeyConstraint.cs (1)
155public override DataTable Table {
fx\src\data\System\Data\UniqueConstraint.cs (1)
399public override DataTable Table {
13 references to Table
System.Data (13)
fx\src\data\System\Data\Constraint.cs (7)
48if (Common.ADP.IsEmpty(value) && (Table != null) && InCollection) 51CultureInfo locale = (Table != null ? Table.Locale : CultureInfo.CurrentCulture); 53if ((Table != null) && InCollection) { 54Table.Constraints.RegisterName(value); 56Table.Constraints.UnregisterName(name); 88dataSet = Table.DataSet;
fx\src\data\System\Data\ConstraintCollection.cs (1)
343if (constraint.Table != table) {
fx\src\data\System\Data\DataColumnCollection.cs (2)
469throw ExceptionBuilder.CannotRemoveConstraint(table.Constraints[i].ConstraintName, table.Constraints[i].Table.TableName); 478throw ExceptionBuilder.CannotRemoveConstraint(constraint.ConstraintName, constraint.Table.TableName);
fx\src\data\System\Data\Merger.cs (3)
405Constraint cons = dest.Table.Constraints.FindConstraint(dest); 410dest.Table.Constraints.Add(dest); 415dest.Table.Constraints.Add(dest);