Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have entities of kind Users. Each user entity belongs to a different entity group. Is it possible to perform a query by Kind with equality filters on certain properties e.g date_of _birth and zipCode. The aim is to get the entities with no intention of modifying them

share|improve this question
Can you post your classes? and if you are using the ndb datasotre... – Jimmy Kane Jan 19 at 21:48
3  
Yes. Entity groups only really come into effect for queries when you start using ancestor as a qualifier. – Tim Hoffman Jan 20 at 0:44
@TimHoffman Thanks! – bobo Jan 20 at 3:08

1 Answer

up vote 0 down vote accepted

Yeah, you can add filter to query like this:

Query q = new Query(kind);
q.addFilter("zipCode", FilterOperator.EQUAL, "11000");
PreparedQuery pq = datastore.prepare(q);
return pq.asIterable();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.