Conditional clauses for linq to Db4O query? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T21:07:21Zhttp://stackoverflow.com/feeds/question/689732http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/689732/conditional-clauses-for-linq-to-db4o-query0Conditional clauses for linq to Db4O query?boris callens2009-03-27T13:18:32Z2009-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=>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=>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#6897531Answer by JaredPar for Conditional clauses for linq to Db4O query?JaredPar2009-03-27T13:25:55Z2009-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#6902580Answer by Davy Landman for Conditional clauses for linq to Db4O query?Davy Landman2009-03-27T15:37:53Z2009-03-27T15:37:53Z<p>What if you split the expression:</p>
<pre><code>IDb4oLinqQuery<Color> 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#13560932Answer by thesuperav for Conditional clauses for linq to Db4O query?thesuperav2009-08-31T06:37:35Z2009-08-31T06:37:35Z<p>Would something like this be suitable?</p>
<pre><code>return (from Color c in db
where !String.IsNullOrEmpty(colorName) && 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) && c.Name.Equals(colorName))
|| (!String.IsNullOrEmpty(color1Name) && c.Name.Equals(color1Name))
|| (!String.IsNullOrEmpty(color2Name) && c.Name.Equals(color2Name))
...
select c).ToList();
</code></pre>