我正在使用 GAE,我需要编写一个 Objectify 查询,询问 9 月 1 日之后创建的元素。
dateCreated 字段是 Java.util.Date,它以 2012-11-29 16:03:59.494000 的格式存储。
此请求不起作用:
public List<MyElement> listAllFromUser(String userId)
{
Objectify ofy = ObjectifyService.begin();
Query<MyElement> q=ofy.query(MyElement.class).filter("dateCreated >", "2013-09-01 00:00:00");
List<MyElement> results = q.list();
return results;
}