10 references to DataKey
System.Data (10)
fx\src\data\System\Data\DataRelation.cs (2)
673
this.parentKey = new
DataKey
(parentColumns, true);
674
this.childKey = new
DataKey
(childColumns, true);
fx\src\data\System\Data\DataRow.cs (2)
884
DataKey key = new
DataKey
(columns, false); // temporary key, don't copy columns
1030
DataKey key = new
DataKey
(columns, false); // temporary key, don't copy columns
fx\src\data\System\Data\ForeignKeyConstraint.cs (2)
720
this.parentKey = new
DataKey
(parentColumns, true);
721
this.childKey = new
DataKey
(childColumns, true);
fx\src\data\System\Data\Merger.cs (1)
553
key = new
DataKey
(srcColumns, false); // DataKey will take ownership of srcColumns
fx\src\data\System\Data\RelatedView.cs (2)
26
this.childKey = new
DataKey
(columns, true);
37
this.childKey = new
DataKey
(childKeyColumns, true);
fx\src\data\System\Data\UniqueConstraint.cs (1)
356
this.key = new
DataKey
(columns, true);