up vote 0 down vote favorite
share [g+] share [fb]

I'm trying to find the correct names for these 2 "types" of coding expressions in LINQ so that I can refer to them correctly. I want to say that the first is called "Fluent Style"?

var selectVar = arrayVar.Select( (a,i) => new { Line = a });

var selectVar =
    from s in arrayVar 
    select new { Line = s };
link|improve this question

77% accept rate
feedback

3 Answers

up vote 4 down vote accepted
link|improve this answer
feedback

the first isn't even really linq, its a lambda expression, with a type invariant object created. (a) => new { blah = b}

The second is a linq query filling an on the fly class that has a property Line. There is no hashrocket operator in this one, so this one is just plain old linq.

link|improve this answer
feedback

The name of the second form is "query comprehesion syntax", which the compiler translates into the first form.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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