C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections. - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T11:27:59Zhttp://stackoverflow.com/feeds/question/5194http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/5194/c-3-0-where-extension-method-with-lambda-vs-linqtoobjects-to-filter-in-memory-co1C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections.KP2008-08-07T19:23:13Z2008-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<MyProduct>
{
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 < 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 => mp.Price < 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#51992Answer by Lasse V. Karlsen for C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections.Lasse V. Karlsen2008-08-07T19:25:49Z2008-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#56410Answer by Ricky for C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections.Ricky2008-08-08T04:19:00Z2008-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#77411Answer by Keith for C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections.Keith2008-08-11T12:52:52Z2008-08-11T12:52:52Z<p>As mentioned d will be <code>IEnumerable<MyProduct></code> while f is <code>List<MyProduct></code></p>
<p>The conversion is done by the C# compiler</p>
<pre><code>var d =
from mp in MyProducts
where mp.Price < 50d
select mp;
</code></pre>
<p>Is converted to (before compilation to IL and with generics expanded):</p>
<pre><code>var d =
MyProducts.
Where<MyProduct>( mp => mp.Price < 50d ).
Select<MyProduct>( mp => 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#135110Answer by Scott Dorman for C# 3.0 Where extension method with lambda vs LINQtoObjects to filter in memory collections.Scott Dorman2008-08-17T04:35:51Z2008-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>