使用 Objectify 可以查询对象的子对象。一个对象也可以有一个 null 父级。
Parent parent;
List<Children> children = ofy().query(Children.class).ancestor(parent).list();
我想知道的是,如果我可以查询一个 null Parent?所以我想知道所有有一个空父母的孩子。如果我在上面传递 null 我会得到一个异常。
此外,使用 null propValue 通过属性创建查询不会返回任何内容。
Query<T> q = ofy().query(clazz);
q.filter(propName, propValue);
return q.list();