vote up 0 vote down star

How can this LINQ query expression be re-expressed with extension method calls?

public static List<Tuple<int, int>> Concat()
{
    return (from x in Enumerable.Range(1, 3)
           from y in Enumerable.Range(4, 3)
           select new Tuple<int, int>(x, y)).ToList();
}
flag
Any LINQ query can be expressed with extension method calls. This is by definition - all LINQ keywords are defined in the language spec by providing expansion to corresponding method calls. – Pavel Minaev Nov 2 at 20:51
Could have checked out with Reflector. – Darin Dimitrov Nov 2 at 21:21

2 Answers

vote up 1 vote down check
Enumerable.Range(1, 3).SelectMany(
    i => Enumerable.Range(4, 3),
    (i, j) => new Tuple<int, int>(i, j)
).ToList();
link|flag
Using the overloaded SelectMany with a resultSelector function seams more readable to me. Given that this is a translation of my Haskell list comprehension [(x,y)|x<-[1,2,3],y<-[4,5,6]]. – robertz Nov 2 at 21:55
vote up 8 vote down
return Enumerable.Range(1, 3).SelectMany(x => Enumerable.Range(4, 3)
           .Select(y => new Tuple<int, int>(x, y))).ToList();

Your version looks more readable :-)

link|flag

Your Answer

Get an OpenID
or

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