Hi All,
I have a data table and iam using for each loop to check differnt conditions. One of the condition i will get out put as one more datatable how to compare this datatable with the one original datatable.
Regards,
Hima
Hi All,
I have a data table and iam using for each loop to check differnt conditions. One of the condition i will get out put as one more datatable how to compare this datatable with the one original datatable.
Regards,
Hima
Hi @thima
Check this
dt3 = dt1.AsEnumerable().Except(dt2.AsEnumerable(),System.Data.DataRowComparer.Default).CopyToDataTable
dt3 contains only uncommon rows
Thanks a lot
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.