What are the names given to these 2 LINQ expressions - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T01:38:52Zhttp://stackoverflow.com/feeds/question/46096http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/46096/what-are-the-names-given-to-these-2-linq-expressions0What are the names given to these 2 LINQ expressionsGuy2008-09-05T15:50:20Z2008-09-16T13:40:18Z
<p>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"?</p>
<pre><code>var selectVar = arrayVar.Select( (a,i) => new { Line = a });
var selectVar =
from s in arrayVar
select new { Line = s };
</code></pre>
http://stackoverflow.com/questions/46096/what-are-the-names-given-to-these-2-linq-expressions/46104#461044Answer by aku for What are the names given to these 2 LINQ expressionsaku2008-09-05T15:52:44Z2008-09-05T15:52:44Z<ul>
<li>First - calling an extension method.
This style of coding is called "<a href="http://www.martinfowler.com/bliki/FluentInterface.html" rel="nofollow">fluent interface</a>" as you mentioned.</li>
<li>Second method is called <a href="http://en.wikipedia.org/wiki/Language_Integrated_Query" rel="nofollow">language integrated query</a></li>
</ul>
http://stackoverflow.com/questions/46096/what-are-the-names-given-to-these-2-linq-expressions/46108#461081Answer by DevelopingChris for What are the names given to these 2 LINQ expressionsDevelopingChris2008-09-05T15:53:51Z2008-09-05T15:53:51Z<p>the first isn't even really linq, its a lambda expression, with a type invariant object created. (a) => new { blah = b}</p>
<p>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.</p>
http://stackoverflow.com/questions/46096/what-are-the-names-given-to-these-2-linq-expressions/72293#722930Answer by David B for What are the names given to these 2 LINQ expressionsDavid B2008-09-16T13:40:18Z2008-09-16T13:40:18Z<p>The name of the second form is "query comprehesion syntax", which the compiler translates into the first form.</p>