> I dont think I can do sth like (I can't access article.tags, article.status
> as far as I know, correct?):

Of course you can. JDO spec defines JDOQL, using Java syntax.

> query.setFilter("reviewer == reviewerParam && status == statusParam &&
> article.tags == tagParam && article.status = articleStatusParam");

What is "tagParam" ? an element of the hashSet?
You can't do "Collection == element" in Java so you can't in JDOQL.
You could do "article.tags.contains(tagParam)"
--~--~---------~--~----~------------~-------~--~----~
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