0

我想要两个实体

@Entity
public class User {
   @Index private String email;
   @Index private String name;
   @Index private String age;
     }
 @Entity
public class poll {
     @Index private String pollid;
     @Index private String answer;
     @Index private Ref<User> user;
    }

现在,如果我想通过电子邮件查询民意调查和过滤,我就空了。可能吗?

ofy().load().type(Poll.class).filter("email", email).list();
4

1 回答 1

1

您不能对 GAE 进行“间接”查询(例如 A JOIN 类型的查询)。基本上,您的“投票”实体没有“电子邮件”字段。

于 2013-07-28T15:09:29.520 回答