11 references to GetSortIndex
System.Data (11)
fx\src\data\System\Data\DataKey.cs (1)
202
return
GetSortIndex
(DataViewRowState.CurrentRows);
fx\src\data\System\Data\DataRelation.cs (3)
250
Index index = childKey.
GetSortIndex
((version == DataRowVersion.Original) ? DataViewRowState.OriginalRows : DataViewRowState.CurrentRows);
263
Index index = parentKey.
GetSortIndex
((version == DataRowVersion.Original) ? DataViewRowState.OriginalRows : DataViewRowState.CurrentRows);
277
Index index = parentKey.
GetSortIndex
((version == DataRowVersion.Original) ? DataViewRowState.OriginalRows : DataViewRowState.CurrentRows);
fx\src\data\System\Data\DataTable.cs (4)
4146
loadIndex = primaryKey.Key.
GetSortIndex
(DataViewRowState.OriginalRows);
4264
loadIndexwithCurrentDeleted = this.primaryKey.Key.
GetSortIndex
(DataViewRowState.CurrentRows |DataViewRowState.Deleted);
4274
loadIndexwithOriginalAdded = this.primaryKey.Key.
GetSortIndex
(DataViewRowState.OriginalRows |DataViewRowState.Added);
4302
index = this.primaryKey.Key.
GetSortIndex
(DataViewRowState.OriginalRows);
fx\src\data\System\Data\ForeignKeyConstraint.cs (2)
239
Index childIndex = childKey.
GetSortIndex
( row.RowState == DataRowState.Deleted ? DataViewRowState.Deleted : DataViewRowState.CurrentRows );
343
Index childIndex = childKey.
GetSortIndex
( row.RowState == DataRowState.Deleted ? DataViewRowState.OriginalRows : DataViewRowState.CurrentRows);
fx\src\data\System\Data\Merger.cs (1)
183
ndxSearch = dst.primaryKey.Key.
GetSortIndex
(DataViewRowState.OriginalRows | DataViewRowState.Added );