On Dec 29, 4:57 pm, pieceovcake <[email protected]> wrote: > how can i do this, add 30 minutes to the stored date field then do > a comparison. > > query.setFilter("lastDate >= anotherDateTimeParam"); > > Looking to do something like this > query.setFilter("lastDate + 30minutes >= anotherDateTimeParam" );
Subtract 30 minutes from "anotherDateTimeParam" and compare with that instead. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
