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