|
hi i want to compare values of 2 rows from 2 tables iam having 2 tables iam able to get the rows from each table to compare like
Datarow originalRow = daset.table1.rows.find(primarykey); Datarow tempRow = daset.table2.rows.find(primarykey);
now i want to compare values of originalrow == tempRow
how to do this iam using itemarray of these rows and looping through each value is their a better way of doing this thanks
|