Hi All,
Below is the query which returns matching records from both DT1 and DT2, I would like to fetch records which is not present in DT2 but present in DT1.
(From d1 In in_dt_ExcelReport.AsEnumerable
Join d2 In io_dt_ContractStartDate.AsEnumerable
On d1(“Opportunity ID”).ToString Equals d2(“Opportunity ID”).ToString
Select d1).Count
@Yoichi please help.
Regards
Saranya A