appengine投影查询看起来很有趣。
https://developers.google.com/appengine/docs/java/datastore/projectionqueries
我正在使用DN JPA插件,我不知道如何进行投影查询。
简单查询。
select from PositionUser p where p.friends = :userKey
实体使列表成为一个懒惰的提取。
@Entity
public class Data{
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Key key;
private String nickName;
private String lastName;
private String firstName;
private String email;
@Basic(fetch = FetchType.LAZY
private List<Key> friends;
我希望我对我的实体进行查询而不序列化列表。
Q1.懒惰获取JPA / appengine中投影查询的机制?
Q2。我知道投影查询是否可以运作?
感谢
-lp