Today I ran into an issue with LINQ to objects (not SQL) that popped up due to a typo. I had a .Select one place and a .Where in another place. I was expecting same result but they are showing different numbers. Assume somelist has 10 elements with all elements having qty = 0
//returns 10 - basically count of all rows. I am expecting 0
somelist.Select(p => p.qty > 0).Count()
//returns 0 - the correct count
somelist.Where(p => p.qty > 0).Count()
if both select and where return IEnumerable<T> then why the ambiguity? Thank you.
Select, especially if you put in a predicate, can read like you to select only said items that pass, infact in ruby and smalltalk that's what the theselectmethod does. – jbtule Nov 15 '11 at 21:05