Hi
I would like to return all rows from TableA table that does not exists in another table.
e.g. select bench_id from TableA where bench_id not in (select bench_id from TableB )
can you please help me write equivalent LINQ query. Here TableA source : Excel and TableB source : Database
I am loading Excel sheet data into DataTable : TableA and TableB I am loading from Database. In short, TableA and TableB is type of DataTable
Thanks in advance.
Regards Vick