1 write to table
System.Data (1)
fx\src\data\System\Data\DataRowCollection.cs (1)
38this.table = table;
21 references to table
System.Data (21)
fx\src\data\System\Data\DataRowCollection.cs (21)
60table.AddRow(row, -1); 67table.AddRow(row, -1); 69table.InsertRow(row, -1, pos); 74table.AddRow(row, pos >-1? pos+1 : -1); 77if (table.NestedParentRelations.Length > 0) { // get in this trouble only if table has a nested parent 81throw ExceptionBuilder.RowInsertTwice(pos, table.TableName); 85table.InsertRow(row, pos+1, pos); 92table.AddRow(row, pos+1); 96table.InsertRow(row, pos+1, pos > list.Count ? -1 : pos); 101if ((null == row) || (row.Table != this.table) || ((0 == row.RBTreeNodeId) && (row.RowState == DataRowState.Detached))) //Webdata 102857 111DataRow row = table.NewRow(-1); 113table.AddRow(row, -1); 118int record = table.NewRecordFromArray(values); 119DataRow row = table.NewRow(record); 120table.AddRow(row, -1); 150return table.FindByPrimaryKey(key); 157return table.FindByPrimaryKey(keys); 164table.Clear(false); 174return(table.FindByPrimaryKey(key) != null); 184return(table.FindByPrimaryKey(keys) != null); 203if ((null == row) || (row.Table != table) || (-1 == row.rowID)) {