5 references to GetParentRows
System.Data (5)
fx\src\data\System\Data\DataRow.cs (3)
839return GetParentRows(_table.ParentRelations[relationName], DataRowVersion.Default); 846return GetParentRows(_table.ParentRelations[relationName], version); 855return GetParentRows(relation, DataRowVersion.Default);
fx\src\data\System\Data\DataSet.cs (1)
1338DataRow[] relatedRows = row.GetParentRows(relations[relatedIndex], DataRowVersion.Current);
fx\src\data\System\Data\DataTable.cs (1)
6379foreach (DataRow parentRow in row.GetParentRows(relation, version)) {