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