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