I'm playing with GAE, and need to make a query with something like this:
select from models.Post as p where (p.votesUp + p.votesDown > 10)
But I get this error: App Engine datastore does not support operator +
Which could be a good approach to replace that query?