Hi,
I have a entity like this
Class AdPost{
...few property
Set<Key> locations;
Set<Key> categories;
}

when i am running a query like
select AdPost where locations = oneLocation && categories == oneCategory
(pseudo code)
where oneLocation is one valid key of a location and oneCategory is a valid
key of one category.

After running this i expect to get list of AdPost but  it returns me null
and no error.
Is it allowed to run euqality on two collection property in same query?

Thanks,
Ravi

-- 
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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to