Re: [google-appengine] How to filter a Query by Date

2014-02-27 Thread Ben Liet
As you noted, the datastore only supports one inequality filter. In general, most people get around it by querying on one inequality, collecting all the matching results, and filtering on the other inequality within the application. Another way is to use IN queries: see this example SO

[google-appengine] How to filter a Query by Date

2014-02-26 Thread Ben Liet
Hello, I have an object with a startdate and a enddate. Now I would like to select all objects where a parameter is between the start- and enddate. But the datastore supports only one inequality filter per query (excepted on one field). So how i could implement a query to get the objects i

Re: [google-appengine] How to filter a Query by Date

2014-02-26 Thread Vinny P
On Fri, Feb 21, 2014 at 6:20 AM, Ben Liet benl...@gmail.com wrote: I have an object with a startdate and a enddate. Now I would like to select all objects where a parameter is between the start- and enddate. But the datastore supports only one inequality filter per query (excepted on one