32 references to
System.Data.Common (32)
System\Data\Common\DBSchemaRow.cs (1)
27dataTable.Rows[i][sortindex] = i;
System\Data\DataColumnCollection.cs (1)
434_table.Rows[i].ClearError(column);
System\Data\DataRowCollection.cs (1)
198public void RemoveAt(int index) => Remove(this[index]);
System\Data\DataSet.cs (3)
1359DataTable.CopyRow(destTable, table.Rows[j]); 1388DataRow row = rows[rowIndex]; 1545DataRow row = table.Rows[j];
System\Data\DataTable.cs (14)
697DataRow row = Rows[i]; 752int recordsPerRow = Rows[i].CopyValuesIntoStore(storeList, nullbitList, recordsConsumed); 898DataRow row = Rows[rowIndex]; 929DataRow row = Rows[rowIndex]; 1385if (Rows[i].HasErrors) 3097row = Rows[i]; 3130row = Rows[i]; 3159DataRow row = Rows[i]; 6959DataRow tableRow = Rows[j]; 6968DataRow tableRow = Rows[j]; 6981DataRow tableRow = Rows[j]; 7026DataRow row = column._table.Rows[j]; 7046DataRow row = column._table.Rows[j]; 7111DataRow dr = Rows[j];
System\Data\DataTableReader.cs (6)
190_currentDataRow = _currentDataTable.Rows[_rowCounter]; 202_currentDataRow = _currentDataTable.Rows[_rowCounter]; 849tempSchemaTable.Rows[key.Ordinal][IsKeyColumn] = true; 952if (_currentDataRow == _currentDataTable.Rows[_rowCounter + 1]) 968if (_currentDataRow == _currentDataTable.Rows[_rowCounter - 1]) 981_currentDataRow = _currentDataTable.Rows[_rowCounter];
System\Data\TypedTableBaseExtensions.cs (1)
99return (TRow)source.Rows[index];
System\Data\xmlsaver.cs (3)
2322_rowsOrder[rc[j]] = j; 2411GenerateRow(table.Rows[rowNum]); 2427DataRow row = table.Rows[rowNum];
System\Xml\XmlDataDocument.cs (2)
876if (row == row.Table.Rows[i]) 883refRow = row.Table.Rows[i];