I have one scenario where I am having two data tables, A and B as below
A -
B-
I want to remove all the rows of data table B from A that are exactly matching except the Column Download Status, but the Download Status column must have the value as Success.
Expected Output-
(From d In dtA.AsEnumerable
Let arrA = arrColsA.Select(Function (x) d(x)).Append("Success").toArray
Where Not dtB.AsEnumerable.Any(Function (d2) arrColsB.Select(Function (y) d2(y)).toArray.SequenceEqual(arrA))
Select r = d).CopyToDataTable