Building a LINQ query programatically without local variables tricking me - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T22:22:15Zhttp://stackoverflow.com/feeds/question/190227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/190227/building-a-linq-query-programatically-without-local-variables-tricking-me4Building a LINQ query programatically without local variables tricking meRune Jacobsen2008-10-10T05:28:32Z2008-10-10T05:48:31Z
<p>Fascinating (to me) situation..</p>
<p>Assume my objects are in perfect working order (i.e. TDD makes me think they work).</p>
<p>I have a list that I create like this (except indented properly):</p>
<pre><code>var result = from v in vendors
from p in v.Products
orderby p.Name
select p;
</code></pre>
<p>This works - I get all products from all vendors.</p>
<p>Now I have a list of conditions, built up at runtime by the user. Let's apply them:</p>
<pre><code>foreach (Attribute a in requiredAttributes)
{
result = result.Where(p => p.Attributes.Contains(a));
}
</code></pre>
<p>This may be primitive, but I thought it'd work. However, after this foreach loop is finished, when you enumerate "result" it will contain all products that has the LAST Attribute of the requiredAttributes collection in it's Attributes property (also a collection).</p>
<p>To me, this smells like "a" is overwritten somewhere with each trip trough the loop, and only the last one applies.</p>
<p>Short of somehow writing an extension method to IEnumerable called ContainsAll(IEnumerable) or something to that effect, how can I achieve what I want, which is basically a logical AND, giving me only those products that has ALL the required attributes?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/190227/building-a-linq-query-programatically-without-local-variables-tricking-me/190234#1902345Answer by Omer van Kloeten for Building a LINQ query programatically without local variables tricking meOmer van Kloeten2008-10-10T05:31:22Z2008-10-10T05:31:22Z<pre><code>var result = from v in vendors
from p in v.Products
where requiredAttributes.All(a => p.Attributes.Contains(a))
orderby p.Name
select p;
</code></pre>
<p>HTH.</p>
http://stackoverflow.com/questions/190227/building-a-linq-query-programatically-without-local-variables-tricking-me/190254#19025411Answer by Jon Skeet for Building a LINQ query programatically without local variables tricking meJon Skeet2008-10-10T05:41:27Z2008-10-10T05:48:31Z<p>(Edited for clarity.)</p>
<p>The problem is the foreach loop, and the fact that the "a" variable is being captured and then changed each time. Here's a modification which will work, by effectively introducing a "new" variable for each iteration of the loop, and capturing that new variable.</p>
<pre><code>foreach (Attribute a in requiredAttributes)
{
Attribute copy = a;
result = result.Where(p => p.Attributes.Contains(copy));
}
</code></pre>
<p>Omer's solution is a cleaner one if you can use it, but this may help if your real code is actually more complicated :)</p>
<p>EDIT: There's more about the issue in <a href="http://csharpindepth.com/Articles/Chapter5/Closures.aspx" rel="nofollow">this closures article</a> - scroll down to "Comparing capture strategies: complexity vs power".</p>
http://stackoverflow.com/questions/190227/building-a-linq-query-programatically-without-local-variables-tricking-me/190260#1902602Answer by Brian for Building a LINQ query programatically without local variables tricking meBrian2008-10-10T05:43:52Z2008-10-10T05:43:52Z<p>I haven't coded it up, but change</p>
<pre><code>foreach (Attribute a in requiredAttributes){
result = result.Where(p => p.Attributes.Contains(a));
}
</code></pre>
<p>to</p>
<pre><code>foreach (Attribute a in requiredAttributes){
Attribute b = a;
result = result.Where(p => p.Attributes.Contains(b));
}
</code></pre>
<p>should fix it too, I think.</p>