11 references to GetSortIndex
System.Data.Common (11)
System\Data\DataKey.cs (1)
207
internal Index GetSortIndex() =>
GetSortIndex
(DataViewRowState.CurrentRows);
System\Data\DataRelation.cs (3)
227
Index index = childKey.
GetSortIndex
((version == DataRowVersion.Original) ? DataViewRowState.OriginalRows : DataViewRowState.CurrentRows);
242
Index index = parentKey.
GetSortIndex
((version == DataRowVersion.Original) ? DataViewRowState.OriginalRows : DataViewRowState.CurrentRows);
262
Index index = parentKey.
GetSortIndex
((version == DataRowVersion.Original) ? DataViewRowState.OriginalRows : DataViewRowState.CurrentRows);
System\Data\DataTable.cs (4)
4621
_loadIndex = _primaryKey.Key.
GetSortIndex
(DataViewRowState.OriginalRows);
4757
_loadIndexwithCurrentDeleted = _primaryKey.Key.
GetSortIndex
(DataViewRowState.CurrentRows | DataViewRowState.Deleted);
4768
_loadIndexwithOriginalAdded = _primaryKey.Key.
GetSortIndex
(DataViewRowState.OriginalRows | DataViewRowState.Added);
4799
index = _primaryKey.Key.
GetSortIndex
(DataViewRowState.OriginalRows);
System\Data\ForeignKeyConstraint.cs (2)
232
Index childIndex = _childKey.
GetSortIndex
(row.RowState == DataRowState.Deleted ? DataViewRowState.Deleted : DataViewRowState.CurrentRows);
362
Index childIndex = _childKey.
GetSortIndex
(row.RowState == DataRowState.Deleted ? DataViewRowState.OriginalRows : DataViewRowState.CurrentRows);
System\Data\Merger.cs (1)
209
ndxSearch = dst._primaryKey.Key.
GetSortIndex
(DataViewRowState.OriginalRows | DataViewRowState.Added);