What are the names given to these 2 LINQ expressions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:38:52Z http://stackoverflow.com/feeds/question/46096 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/46096/what-are-the-names-given-to-these-2-linq-expressions 0 What are the names given to these 2 LINQ expressions Guy 2008-09-05T15:50:20Z 2008-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) =&gt; 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#46104 4 Answer by aku for What are the names given to these 2 LINQ expressions aku 2008-09-05T15:52:44Z 2008-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#46108 1 Answer by DevelopingChris for What are the names given to these 2 LINQ expressions DevelopingChris 2008-09-05T15:53:51Z 2008-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#72293 0 Answer by David B for What are the names given to these 2 LINQ expressions David B 2008-09-16T13:40:18Z 2008-09-16T13:40:18Z <p>The name of the second form is "query comprehesion syntax", which the compiler translates into the first form.</p>