I have two DataSet A and B in .Net. Ds A and B has Columns ColA and ColB in both.
I need to check if any corresponding First and Second rows of A are available in B. It should return only the Rows from A which are not in B.
It should basically do this.
Not(Select ColA, ColB from DsA [join DsB ? or self join?]
where DsA.ColA == DsB.ColA and DsA.ColB == DsB.ColB)
DsA
(ColA,ColB) - (1, 10), (1, 11), (2, 12), (3,13), (4, 14)
DsB
(ColA,ColB) - (1, 9), (1, 10), (2, 12), (3,15)
The query should return (1, 11), (3, 13), (4, 14) {from DsA}.
Sorry for the format. I am new here and I do not know how to make a proper table.