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);
Yes, its possible... add "in" , like this
ofy.query(CarObject.class).filter("vin in",vinNumberList);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With