C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T11:27:59Z http://stackoverflow.com/feeds/question/5194 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/5194/c-3-0-where-extension-method-with-lambda-vs-linqtoobjects-to-filter-in-memory-co 1 C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections. KP 2008-08-07T19:23:13Z 2008-08-17T04:35:51Z <p>I am prototyping some C# 3 collection filters and came across this. I have a collection of products:</p> <pre><code>public class MyProduct { public string Name { get; set; } public Double Price { get; set; } public string Description { get; set; } } var MyProducts = new List&lt;MyProduct&gt; { new MyProduct { Name = "Surfboard", Price = 144.99, Description = "Most important thing you will ever own." }, new MyProduct { Name = "Leash", Price = 29.28, Description = "Keep important things close to you." } , new MyProduct { Name = "Sun Screen", Price = 15.88, Description = "1000 SPF! Who Could ask for more?" } }; </code></pre> <p>Now if I use LINQ to filter it works as expected:</p> <pre><code>var d = (from mp in MyProducts where mp.Price &lt; 50d select mp); </code></pre> <p>And if I use the Where extension method combined with a Lambda the filter works as well:</p> <pre><code>var f = MyProducts.Where(mp =&gt; mp.Price &lt; 50d).ToList(); </code></pre> <p>Question: What is the difference, and why use one over the other?</p> http://stackoverflow.com/questions/5194/c-3-0-where-extension-method-with-lambda-vs-linqtoobjects-to-filter-in-memory-co/5199#5199 2 Answer by Lasse V. Karlsen for C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections. Lasse V. Karlsen 2008-08-07T19:25:49Z 2008-08-07T19:25:49Z <p>LINQ turns into method calls like the code you have.</p> <p>In other words, there should be no difference.</p> <p>However, in your two pieces of code you are not calling .ToList in the first, so the first piece of code will produce an enumerable data source, but if you call .ToList on it, the two should be the same.</p> http://stackoverflow.com/questions/5194/c-3-0-where-extension-method-with-lambda-vs-linqtoobjects-to-filter-in-memory-co/5641#5641 0 Answer by Ricky for C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections. Ricky 2008-08-08T04:19:00Z 2008-08-08T04:19:00Z <p>Other than the ToList difference, #2 is a lot more readable and natural IMO</p> http://stackoverflow.com/questions/5194/c-3-0-where-extension-method-with-lambda-vs-linqtoobjects-to-filter-in-memory-co/7741#7741 1 Answer by Keith for C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections. Keith 2008-08-11T12:52:52Z 2008-08-11T12:52:52Z <p>As mentioned d will be <code>IEnumerable&lt;MyProduct&gt;</code> while f is <code>List&lt;MyProduct&gt;</code></p> <p>The conversion is done by the C# compiler</p> <pre><code>var d = from mp in MyProducts where mp.Price &lt; 50d select mp; </code></pre> <p>Is converted to (before compilation to IL and with generics expanded):</p> <pre><code>var d = MyProducts. Where&lt;MyProduct&gt;( mp =&gt; mp.Price &lt; 50d ). Select&lt;MyProduct&gt;( mp =&gt; mp ); //note that this last select is optimised out if it makes no change </code></pre> <p>Note that in this simple case it makes little difference. Where Linq becomes really valuable is in much more complicated loops. </p> <p>For instance this statement could include group-bys, orders and a few let statements and still be readable in Linq format when the equivalent <code>.Method().Method.Method()</code> would get complicated.</p> http://stackoverflow.com/questions/5194/c-3-0-where-extension-method-with-lambda-vs-linqtoobjects-to-filter-in-memory-co/13511#13511 0 Answer by Scott Dorman for C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections. Scott Dorman 2008-08-17T04:35:51Z 2008-08-17T04:35:51Z <p>The syntax you are using for <em>d</em> will get transformed by the compiler into the same IL as the extension methods. The "SQL-like" syntax is supposed to be a more natural way to represent a LINQ expression (although I personally prefer the extension methods). As has already been pointed out, the first example will return an IEnumerable result while the second example will return a List result due to the call to ToList(). If you remove the ToList() call in the second example, they will both return the same result as Where returns an IEnumerable result.</p>