6 writes to rowID
System.Data (6)
fx\src\data\System\Data\DataTable.cs (6)
769
row.
rowID
= nextRowID;
2567
row.
rowID
= proposedID;
2575
row.
rowID
= -1;
2649
row.
rowID
= -1;
3014
row.
rowID
= proposedID;
3627
row.
rowID
= -1;
22 references to rowID
System.Data (22)
fx\src\data\System\Data\DataRow.cs (5)
278
if ((-1 !=
rowID
) && column.ReadOnly) {
296
if ((-1 !=
rowID
) && column.ReadOnly) {
417
if ((-1 !=
rowID
) && column.ReadOnly) {
434
if ((-1 !=
rowID
) && column.ReadOnly) {
588
if (
rowID
== -1) {
fx\src\data\System\Data\DataRowCollection.cs (1)
203
if ((null == row) || (row.Table != table) || (-1 == row.
rowID
)) {
fx\src\data\System\Data\DataTable.cs (6)
2124
if (oldRows[i].
rowID
!= -1) {
2548
if (row.
rowID
!= -1) {
3004
if (row.
rowID
!= -1) {
3598
if (row.
rowID
== -1) {
3994
if (row.RowState == DataRowState.Detached && row.
rowID
!= -1) {
4082
if (row.RowState == DataRowState.Detached && row.
rowID
!= -1) {
fx\src\data\System\Data\RecordManager.cs (1)
154
if (rows[record]!= null && rows[record].
rowID
!= -1) {
fx\src\data\System\Data\Select.cs (2)
723
long id1 = table.recordManager[record1] == null? 0: table.recordManager[record1].
rowID
;
724
long id2 = table.recordManager[record2] == null ? 0 : table.recordManager[record2].
rowID
;
fx\src\data\System\Data\Selection.cs (2)
384
int diff = table.recordManager[record1].
rowID
.CompareTo(table.recordManager[record2].
rowID
);
fx\src\data\System\Data\xmlsaver.cs (5)
2114
_xmlw.WriteAttributeString( Keywords.DFF, Keywords.DIFFID, Keywords.DFFNS, row.Table.TableName+row.
rowID
.ToString(CultureInfo.InvariantCulture));
2135
_xmlw.WriteAttributeString( Keywords.DFF, Keywords.DIFFID, Keywords.DFFNS, row.Table.TableName+row.
rowID
.ToString(CultureInfo.InvariantCulture));
2166
string rowIDString = table.TableName+row.
rowID
.ToString(CultureInfo.InvariantCulture);
2171
parentId = parentRow.Table.TableName+parentRow.
rowID
.ToString(CultureInfo.InvariantCulture);
2545
_xmlw.WriteAttributeString( Keywords.DFF, Keywords.DIFFID, Keywords.DFFNS, row.Table.TableName+row.
rowID
.ToString(CultureInfo.InvariantCulture));