db4o querying subobject - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T16:41:57Z http://stackoverflow.com/feeds/question/1000054 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1000054/db4o-querying-subobject 0 db4o querying subobject Fred 2009-06-16T07:45:10Z 2009-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#1408456 2 Answer by mr_georg for db4o querying subobject mr_georg 2009-09-11T00:40:16Z 2009-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>