我有一个包含@Parent 的实体
public class MyObject {
@Id
private String instID;
// This has to stay String, because GAE doesn't take custom type
@Index
@Parent
private Ref<Partner> ownerRef;
@Index
private Date createdOn;
}
当我尝试通过运行查询所有最新的 MyObject 时...
ofy().load()
.type(MyObject.class)
.order("-createdOn")
.limit(10)
.list();
我得到了零记录......但是,如果我注释掉 .order() 部分,我得到了返回的记录。我想知道 order() 是否需要祖先()。
有谁知道?