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