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