RemoveVal.xaml (10.4 KB) I need to remove rows in a datatable based on list of values in another datatable.
From the Source Datatable, I need to remove entire rows if values in column “Col 2” matches with values found in column “Nos” in Datatbable DT1.
Please help me to solve this.
What I have:
Source Datatable:
and DT1 (it contains more than 1000 rows in actual data)
and what I need in new FinalDT
Since dealing with datatable with large data, I am trying in LinQ Query instead of For Each loop:
Please help me