db4o querying subobject - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T16:41:57Zhttp://stackoverflow.com/feeds/question/1000054http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1000054/db4o-querying-subobject0db4o querying subobjectFred2009-06-16T07:45:10Z2009-09-11T00:40:16Z
<p>I've just started with db4o and I stumbled on to a problem.</p>
<p>I have an object with a subobject (it is probably not the correct word but I hope you get what I mean).</p>
<p>The subobject contains two dates, one start date and one end date.</p>
<p>I would like to show the main object if it has at least one sub object where DateTime.Now is inbetween the start and end date.</p>
<p>I have to use native query or SODA (linq isn't working in the project).</p>
<p>Thanks in advance!</p>
<p>/Fredrik</p>
http://stackoverflow.com/questions/1000054/db4o-querying-subobject/1408456#14084562Answer by mr_georg for db4o querying subobjectmr_georg2009-09-11T00:40:16Z2009-09-11T00:40:16Z<p>I would try something like this:</p>
<pre><code>IQuery query = db.Query();
query.Constrain(typeof(YourObjectType));
IConstraint constr1 = query.Descend("enddate")
.Constrain(DateTime.Now).Greater();
IConstraint constr2 = query.Descend("startdate")
.Constrain(DateTime.Now).Smaller();
query.Constrain(constr1).And(constr2);
IObjectSet result = query.Execute();
</code></pre>