Hi,
I am running AppEngine locally.I use some filters on the following attribute of my object :
class Blah(db.Model):
access_code = db.StringProperty()
Then I run my filter in the view:
cac = Blah.all().filter(
'access_code =', 'value_to_find').fetch(1)
When doing so, I get the following error : BadValueError: Filtering on Text properties is not supported.
Even tho it's a StringProperty. This never happened before and a few researches on Google didn't help at all. Is anyone having the same issue ?
Best, Martin