按列表对象化查询过滤器?
是否可以使用列表进行 Objectify 查询并获取与该列表匹配的所有对象的列表?例如
List<String> vinNumberList;
Query<CarObject> q=ofy.query(CarObject.class).filter("vin",vinNumberList);
Is it possible to make an Objectify query with a list and get a list of all objects matching the list? For example
List<String> vinNumberList;
Query<CarObject> q=ofy.query(CarObject.class).filter("vin",vinNumberList);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有可能......添加“in”,就像这样
Yes, its possible... add "in" , like this