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