5 references to IndexOf
System.Data.Common (5)
System\Data\DataSet.cs (3)
553parentInfo[0] = Tables.IndexOf(rel.ParentTable); 560childInfo[0] = Tables.IndexOf(rel.ChildTable); 1430int relatedTableIndex = Tables.IndexOf(relatedRow.Table);
System\Data\DataTable.cs (2)
560parentInfo[0] = allConstraints ? DataSet!.Tables.IndexOf(fk.RelatedTable) : 0; 567childInfo[0] = allConstraints ? DataSet!.Tables.IndexOf(fk.Table) : 0; //Since the constraint is on the current table, this is the child table.