So I have 2 IQueryable<Array> queries with a common string type; I want to use the second query to remove all records using the common type in the first, leaving only the records not found as the result of the first query. Not quite sure how to do it.
So I have 2 IQueryable<Array> queries with a common string type; I want to
Share
The most understandable way to do it is to filter out the items in ListA using
Where():A way that might be more efficient is to use a Group Join:
Edit: If you have two different DataContexts the above will not work. This might:
See also: Linq to SQL – How to inner join tables from different Data Context?