Objectify查询按列表过滤?

时间:2011-11-05 00:16:32

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

是否可以使用列表进行Objectify查询并获取与列表匹配的所有对象的列表?例如

List<String> vinNumberList;
Query<CarObject> q=ofy.query(CarObject.class).filter("vin",vinNumberList);

1 个答案:

答案 0 :(得分:23)

是的,可能......添加“in”,就像这样

ofy.query(CarObject.class).filter("vin in",vinNumberList);