10 references to DataKey
System.Data.Common (10)
System\Data\DataRelation.cs (2)
686
_parentKey = new
DataKey
(parentColumns, true);
687
_childKey = new
DataKey
(childColumns, true);
System\Data\DataRow.cs (2)
948
DataKey key = new
DataKey
(columns, false); // temporary key, don't copy columns
1130
DataKey key = new
DataKey
(columns, false); // temporary key, don't copy columns
System\Data\ForeignKeyConstraint.cs (2)
819
_parentKey = new
DataKey
(parentColumns, true);
820
_childKey = new
DataKey
(childColumns, true);
System\Data\Merger.cs (1)
643
key = new
DataKey
(srcColumns, false); // DataKey will take ownership of srcColumns
System\Data\RelatedView.cs (2)
25
_childKey = new
DataKey
(columns, true);
36
_childKey = new
DataKey
(childKeyColumns, true);
System\Data\UniqueConstraint.cs (1)
384
_key = new
DataKey
(columns, true);