Objectify - 无论父母如何,都获得所有类型

时间:2018-02-17 05:02:46

标签: google-app-engine google-cloud-datastore objectify

我有子实体,其中包含@Parent键ref。

当我提供父键时,我能够像这样得到子实体:

OfyService.ofy()
            .load()
            .type(Child.class)
            .parent(parentKey)
            .id(childId).now();

我尝试直接访问子实体而不提供父键,但这不起作用(返回null):

OfyService.ofy()
            .load()
            .type(Child.class)
            .id(childId).now();

是否有其他方法可以查询某个或所有类型的实例而不管父级?

例如,_ah / admin能够列出所有类型的实体而不管父级。

1 个答案:

答案 0 :(得分:1)

Iterable<Child> children = ofy().load().type(Child.class);