Hello
I was wondering how to make a query, I have objects with a List
property and I want to get those objects which this List property
contains any element of my parameter List, example:
class A {
List<String> names;
}
and when querying I have a List<String> paramNames, so I need to get
objects that have any name in common.
My first solution was to query each name, one by one in a loop.
Is there any better solutions for this?
Thanks.
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.