Hello,
I have designed linq query to get non matching rows based on column value match. But the result is returning inaccurate value with all the rows from input table instead of getting non matching rows.
in_dt_InputExcelRecords.AsEnumerable().Where(Function(row) not in_dt_CommonTableRecords.AsEnumerable().Where(function(r) r(“transactionReference”).ToString.Trim.Equals(row(“What is your Employee ID? ¿Cual es tu ID de empleado?”).ToString.Trim) andalso r(“customData3”).ToString.Contains(row(“Please provide the date of your absence (MM/DD/YR):”).ToString) andalso r(“customData2”).ToString.Equals(row(“What is your reason for absence”).ToString)).Any).ToArray
Is anything incorrect in this query