vote up 0 vote down star

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.

flag

72% accept rate

6 Answers

vote up 4 vote down check

A bit of a guess (haven't tried running it), but:

var filteredResults = from obj in objects 
                      join result in results on obj.id equals result.id
                      select result;

Note that this should replace both the lines of code you have in your question.

link|flag
this works too, but i wonder which is more efficient? – zsharp Jun 4 at 20:53
vote up 0 vote down

If You always need only the first element's ID , You can store it to variable and use it to lambda expression

var results= from x in objects select x.id;
int firstID = results.First().id ;
results=results.Where(r=>r.id==  firstID  )

Or, use directly like this:

var results= from x in objects select x.id;
results=results.Where(r=>r.id==  results.First().id  )
link|flag
vote up 0 vote down

Maybe you want this then?

results.Where(r=> objects.Any(o => o.id == r.id) )

link|flag
vote up 2 vote down

If you want some performance (list.Contains() has an O(n) complexity) you could go with

var ids = objects.ToDictionary(o => o.id);

results.Where(o => ids.ContainsKey(o.id));
link|flag
this gave an error. should this work with linqtosql? – zsharp Jun 4 at 20:54
Uh, no this is Linq to objects only. If you want it to be translated in SQL by lin to sql, you should specify it in the question (and in the tags). Besides, it would be helpful if you said what exact error you got. – Yann Schwartz Jun 4 at 20:58
vote up 4 vote down
results = results.Where(r => list1.Contains(r.id));
link|flag
didnt work see above – zsharp Jun 3 at 1:08
What do you mean didn't work? Did you get an exception? That's exactly how it's supposed to work; if list1 is a list of ints, it then checks the int property of your object(s) in results to see if they exist in the list. I just tested it on my machine with some dummy classes and it worked perfectly. Post either the error or more code... – BFree Jun 3 at 1:11
i stand corrected, there was another issue causing problem which i will ask about separtely. – zsharp Jun 4 at 20:41
vote up 4 vote down

Like so...

results.Where(r=>list1.Contains(r.id))
link|flag
Might get tricky if list1 and results contain a lot of items... – Yann Schwartz Jun 3 at 1:03
didnt work see above – zsharp Jun 3 at 1:08
I stand by this as the solution to your described problem – spender Jun 3 at 8:41
i stand corrected, there was another issue causing problem which i will ask about separtely. – zsharp Jun 4 at 20:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.