我有一个帐户实体,我需要从数据存储区获取用户名。
String username = ofy().load().type(Account.class).filterKey("in", userId).project("username");
我的代码无效。我一直在Query<Account>
。我该如何完成?
答案 0 :(得分:3)
您缺少方法first()
和now()
,如
String username = ofy().load().type(Account.class).
filterKey("in", userId).project("username").first().now().getUsername();