Hi all,
Is reverse referencing possible in Google app engine? I am using app engine patch to develope an application and my model is something like:
class Portfolio(db.Model):
user = db.ReferenceProperty(User)
pic = db.BlobProperty()
Now, If I have the user object, is it possible to retrieve the pic associated with the users portfolio? i.e. the reverse reference from the User to Portfolio.