Data row comparison with 2 datatables
I have 2 datatable..From datatable1, with certain conditions I have retrieved data row array as follows:
Datarow [] drow= datatable1.asenumerable ().where ().select ();
Now assume these drow has 3 rows and im trying to search these rows in another datatable2
Where I'm facing error.
Int indecx= datatable2.rows.index (drow [0])// ERROR
HOW TO SOLVE