Conditional clauses for linq to Db4O query? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T21:07:21Z http://stackoverflow.com/feeds/question/689732 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/689732/conditional-clauses-for-linq-to-db4o-query 0 Conditional clauses for linq to Db4O query? boris callens 2009-03-27T13:18:32Z 2009-08-31T06:37:35Z <p>In linq to sql i can do like this:</p> <pre><code>var q = db.Colors; if(! string.IsNullOrEmpty(colorName)) q = q.Where(c=&gt;c.Name.Equals(colorName)); return q.ToList(); </code></pre> <p>In Db4O linq I can't do it like this because I have to start with</p> <pre><code>var q = (from Color c in db select c); if(! string.IsNullOrEmpty(colorName)) q = q.Where(c=&gt;c.Name.Equals(colorName)); return q.ToList(); </code></pre> <p>This results in </p> <ol> <li>a complete enumeration of ALL the colors</li> <li>a filter by name.</li> </ol> <p>That's not the solution I was aiming for off course. Any suggestions?</p> http://stackoverflow.com/questions/689732/conditional-clauses-for-linq-to-db4o-query/689753#689753 1 Answer by JaredPar for Conditional clauses for linq to Db4O query? JaredPar 2009-03-27T13:25:55Z 2009-03-27T13:25:55Z <p>I'm not sure what you're getting at. Are you worried that in the first case some of the code executes server side so you optimize the values returned. But in the second case the enumeration is done locally so there is no optimization on the used values? </p> <p>If so, there is no way to avoid this with LINQ to Objects. The objects are in memory so there is no way to avoid enumerating through them to do a filter operation. </p> http://stackoverflow.com/questions/689732/conditional-clauses-for-linq-to-db4o-query/690258#690258 0 Answer by Davy Landman for Conditional clauses for linq to Db4O query? Davy Landman 2009-03-27T15:37:53Z 2009-03-27T15:37:53Z <p>What if you split the expression:</p> <pre><code>IDb4oLinqQuery&lt;Color&gt; q; if(! string.IsNullOrEmpty(colorName)) { q = from Color c in db where c.Name.Equals(colorName) select c; } else { q = from Color c in db select c; } return q.ToList(); </code></pre> <p>This way the Db4O preprocessor sees 2 different LINQ Queries? Downside is off course this solution is much more verbose and not exactly DRY.. </p> http://stackoverflow.com/questions/689732/conditional-clauses-for-linq-to-db4o-query/1356093#1356093 2 Answer by thesuperav for Conditional clauses for linq to Db4O query? thesuperav 2009-08-31T06:37:35Z 2009-08-31T06:37:35Z <p>Would something like this be suitable?</p> <pre><code>return (from Color c in db where !String.IsNullOrEmpty(colorName) &amp;&amp; c.Name.Equals(colorName) select c).ToList(); </code></pre> <p>You can then also use multiple parameters:</p> <pre><code>return (from Color c in db where (!String.IsNullOrEmpty(colorName) &amp;&amp; c.Name.Equals(colorName)) || (!String.IsNullOrEmpty(color1Name) &amp;&amp; c.Name.Equals(color1Name)) || (!String.IsNullOrEmpty(color2Name) &amp;&amp; c.Name.Equals(color2Name)) ... select c).ToList(); </code></pre>