How can I implement this? Any activity would do but I prefer LINQ.
I have two datatables, DT1 and DT2.
DT1
Account | name |
---|---|
123 | ABC |
345 | CDA |
567 | KJB |
321 | KIC |
789 | DTC |
DT2.
Account | name |
---|---|
123 | lmn |
325 | kjf |
658 | uti |
321 | lcd |
789 | ADZ |
need output like this
if in DT1 and DT2 has same account number then need to remove same account number raw from the DT2
DT1
Account | name |
---|---|
123 | ABC |
345 | CDA |
567 | KJB |
321 | KIC |
789 | DTC |
DT2
325 kjf
658 uti
Thanks in advanced.
Andy