Combine multiple LINQ expressions from an array - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T22:16:36Z http://stackoverflow.com/feeds/question/160604 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/160604/combine-multiple-linq-expressions-from-an-array 0 Combine multiple LINQ expressions from an array Cameron MacFarland 2008-10-02T02:19:22Z 2008-10-02T12:05:54Z <p>I'm trying to combine a list of functions like so.</p> <p>I have this:</p> <pre><code>Func&lt;int, bool&gt;[] criteria = new Func&lt;int, bool&gt;[3]; criteria[0] = i =&gt; i % 2 == 0; criteria[1] = i =&gt; i % 3 == 0; criteria[2] = i =&gt; i % 5 == 0; </code></pre> <p>And I want this:</p> <pre><code>Func&lt;int, bool&gt;[] predicates = new Func&lt;int, bool&gt;[3]; predicates[0] = i =&gt; i % 2 == 0; predicates[1] = i =&gt; i % 2 == 0 &amp;&amp; i % 3 == 0; predicates[2] = i =&gt; i % 2 == 0 &amp;&amp; i % 3 == 0 &amp;&amp; i % 5 == 0; </code></pre> <p>So far I've got the following code:</p> <pre><code>Expression&lt;Func&lt;int, bool&gt;&gt;[] results = new Expression&lt;Func&lt;int, bool&gt;&gt;[criteria.Length]; for (int i = 0; i &lt; criteria.Length; i++) { results[i] = f =&gt; true; for (int j = 0; j &lt;= i; j++) { Expression&lt;Func&lt;int, bool&gt;&gt; expr = b =&gt; criteria[j](b); var invokedExpr = Expression.Invoke( expr, results[i].Parameters.Cast&lt;Expression&gt;()); results[i] = Expression.Lambda&lt;Func&lt;int, bool&gt;&gt;( Expression.And(results[i].Body, invokedExpr), results[i].Parameters); } } var predicates = results.Select(e =&gt; e.Compile()).ToArray(); Console.WriteLine(predicates[0](6)); // Returns true Console.WriteLine(predicates[1](6)); // Returns false Console.WriteLine(predicates[2](6)); // Throws an IndexOutOfRangeException </code></pre> <p>Does anyone know what I'm doing wrong?</p> http://stackoverflow.com/questions/160604/combine-multiple-linq-expressions-from-an-array/160661#160661 2 Answer by Brian for Combine multiple LINQ expressions from an array Brian 2008-10-02T02:42:45Z 2008-10-02T02:42:45Z <p>This was a guess, as I know little about this stuff, but this seems to fix it:</p> <pre><code>Func&lt;int, bool&gt;[] criteria = new Func&lt;int, bool&gt;[3]; criteria[0] = i =&gt; i % 2 == 0; criteria[1] = i =&gt; i % 3 == 0; criteria[2] = i =&gt; i % 5 == 0; Expression&lt;Func&lt;int, bool&gt;&gt;[] results = new Expression&lt;Func&lt;int, bool&gt;&gt;[criteria.Length]; for (int i = 0; i &lt; criteria.Length; i++) { results[i] = f =&gt; true; for (int j = 0; j &lt;= i; j++) { int ii = i; int jj = j; Expression&lt;Func&lt;int, bool&gt;&gt; expr = b =&gt; criteria[jj](b); var invokedExpr = Expression.Invoke(expr, results[ii].Parameters.Cast&lt;Expression&gt;()); results[ii] = Expression.Lambda&lt;Func&lt;int, bool&gt;&gt;(Expression.And(results[ii].Body, invokedExpr), results[ii].Parameters); } } var predicates = results.Select(e =&gt; e.Compile()).ToArray(); </code></pre> <p>The key is the introduction of 'ii' and 'jj' (maybe only one matters, I didn't try). I think you are capturing a mutable variable inside a lambda, and thus when you finally reference it, you're seeing the later-mutated value rather than the original value.</p> http://stackoverflow.com/questions/160604/combine-multiple-linq-expressions-from-an-array/161932#161932 1 Answer by David B for Combine multiple LINQ expressions from an array David B 2008-10-02T12:05:54Z 2008-10-02T12:05:54Z <p>No need to pull in Expressions...</p> <pre><code> Func&lt;int, bool&gt;[] criteria = new Func&lt;int, bool&gt;[3]; criteria[0] = i =&gt; i % 2 == 0; criteria[1] = i =&gt; i % 3 == 0; criteria[2] = i =&gt; i % 5 == 0; Func&lt;int, bool&gt;[] predicates = new Func&lt;int, bool&gt;[3]; predicates[0] = criteria[0]; for (int i = 1; i &lt; criteria.Length; i++) { //need j to be an unchanging int, one for each loop execution. int j = i; predicates[j] = x =&gt; predicates[j - 1](x) &amp;&amp; criteria[j](x); } Console.WriteLine(predicates[0](6)); //True Console.WriteLine(predicates[1](6)); //True Console.WriteLine(predicates[2](6)); //False </code></pre>