1 write to _table
System.Data.Common (1)
System\Data\DataRowCollection.cs (1)
33_table = table;
21 references to _table
System.Data.Common (21)
System\Data\DataRowCollection.cs (21)
46public void Add(DataRow row) => _table.AddRow(row, -1); 57_table.AddRow(row, -1); 61_table.InsertRow(row, -1, pos); 69_table.AddRow(row, pos > -1 ? pos + 1 : -1); 73if (_table.NestedParentRelations.Length > 0) 80throw ExceptionBuilder.RowInsertTwice(pos, _table.TableName); 84_table.InsertRow(row, pos + 1, pos); 93_table.AddRow(row, pos + 1); 98_table.InsertRow(row, pos + 1, pos > _list.Count ? -1 : pos); 102public int IndexOf(DataRow? row) => (null == row) || (row.Table != _table) || ((0 == row.RBTreeNodeId) && (row.RowState == DataRowState.Detached)) ? 111DataRow row = _table.NewRow(-1); 113_table.AddRow(row, -1); 119int record = _table.NewRecordFromArray(values); 120DataRow row = _table.NewRow(record); 121_table.AddRow(row, -1); 144public DataRow? Find(object? key) => _table.FindByPrimaryKey(key); 149public DataRow? Find(object?[] keys) => _table.FindByPrimaryKey(keys); 154public void Clear() => _table.Clear(false); 160public bool Contains(object? key) => (_table.FindByPrimaryKey(key) != null); 166public bool Contains(object?[] keys) => (_table.FindByPrimaryKey(keys) != null); 179if ((null == row) || (row.Table != _table) || (-1 == row.rowID))