(From d1 in dtProds.AsEnumerable
Let chk = dtList.AsEnumerable.Any(Function (d2) d2(YourColNameOrIndex).toString.Equals(d1(YourColNameOrIndex).toString.Trim))
Where chk
Select r=d1).CopyToDataTable
Can you please let me know how to compare two columns ? For example Dt1 has product as AC and ID as 1 then we should filter DT2 for product AC and ID 1
If there are line items with Product - AC and ID - 2 it must not be considered.