Hi i've  problem
How a can query a data inside an ArrayList?
I use low level Datastore API
the data is structured like this
entity (kind 'User')
-String username
-String pass
-ArrayList<String> tags
I want to query all the user with a specific role
my code
         //...
        DatastoreService ds=
DatastoreServiceFactory.getDatastoreService();
        Query query = new Query("User");
        query.addFilter("tag????", Query.FilterOperator.EQUAL,
"admin");   // <<<<<-----HERE
        PreparedQuery pq = ds.prepare(query);
        Iterable<Entity> it = pq.asIterable();
         //...

-- 
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.

Reply via email to