how do i use the second expression to select only those with ID from the first?
var list1= from x in objects select x.id;
results=results.Where(r=>r.id== ???? )
I want the results to be only those with id from listA
tia
EDIT:i stand corrected, there was another issue causing problem which i will ask about separately.