30 references to CurrentRows
System.Data (28)
fx\src\data\System\Data\DataColumn.cs (1)
1095sortIndex = table.GetIndex(indexDesc, DataViewRowState.CurrentRows, (IFilter)null);
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\DataRowView.cs (1)
186childView.SetIndex("", DataViewRowState.CurrentRows, null); // finish construction via RelatedView.SetIndex
fx\src\data\System\Data\DataTable.cs (7)
1162view.SetIndex2("", DataViewRowState.CurrentRows, null, true); 2731DataRow[] rows = Select(filter, "", DataViewRowState.CurrentRows); 2901return GetIndex(indexDesc, DataViewRowState.CurrentRows, (IFilter)null); 3796return new Select(this, "", "", DataViewRowState.CurrentRows).SelectRows(); 3805return new Select(this, filterExpression, "", DataViewRowState.CurrentRows).SelectRows(); 3814return new Select(this, filterExpression, sort, DataViewRowState.CurrentRows).SelectRows(); 4264loadIndexwithCurrentDeleted = this.primaryKey.Key.GetSortIndex(DataViewRowState.CurrentRows |DataViewRowState.Deleted);
fx\src\data\System\Data\DataView.cs (9)
48private DataViewRowState recordStates = DataViewRowState.CurrentRows; 119SetIndex2("", DataViewRowState.CurrentRows, null, true); 127SetIndex2("", DataViewRowState.CurrentRows, null, true); 147((int)~(DataViewRowState.CurrentRows | DataViewRowState.OriginalRows))) != 0) { 183((int)~(DataViewRowState.CurrentRows | DataViewRowState.OriginalRows))) != 0) { 418DefaultValue(DataViewRowState.CurrentRows), 433((int)~(DataViewRowState.CurrentRows | DataViewRowState.OriginalRows))) != 0) 567SetIndex2("", DataViewRowState.CurrentRows, null, false); 1529SetIndex("", DataViewRowState.CurrentRows, null);
fx\src\data\System\Data\DataViewSetting.cs (1)
22DataViewRowState rowStateFilter = DataViewRowState.CurrentRows;
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\OleDb\OleDbCommandBuilder.cs (1)
206DataRow[] dataRows = table.Select(null, ODB.ORDINAL_POSITION_ASC, DataViewRowState.CurrentRows); // MDAC 70928
fx\src\data\System\Data\Selection.cs (2)
118(~(DataViewRowState.CurrentRows | DataViewRowState.OriginalRows))) != 0) { 662return ((0 != (DataViewRowState.CurrentRows & oldState)) ? ReplaceNewRecordForCompare : // Added/ModifiedCurrent/Unchanged
System.Data.DataSetExtensions (2)
System\Data\LinqDataView.cs (2)
77DataViewRowState.CurrentRows) 237&& newRowStates != DataViewRowState.CurrentRows)