Tagged Questions

2
votes
2answers
230 views

BlobReferenceProperty and ReferenceProperty model design

I have a design question is BlobReferenceProperty basically ReferenceProperty? Should I do prefetch (suggested by Nick http://blog.notdot.net/2010/01/ReferenceProperty-prefetching-in-App-Engine) like ...
2
votes
1answer
109 views

How to enumerate the back-references of an entity

In this scenario, company.py contains: from django.utils import simplejson class Company(db.Model): name=db.StringProperty() address=db.StringProperty() def to_JSON(): d = ...
1
vote
1answer
72 views

GAE python - how to change the “one” that a “many” object points to?

I'm using the GAE database to store objects of type Supp, which are part of a SuppSet. A SuppSet can have many Supps in it. I'm using the ReferenceProperty model to create the one-to-many relationship ...
1
vote
1answer
72 views

How to access items in a model with ReferenceProperty?

This is a follow up on my previous question. I set up the models with ReferenceProperty: class User(db.Model): userEmail = db.StringProperty() class Comment(db.Model): user = ...
1
vote
2answers
236 views

How do we override the choice field display of a reference property in appengine using Django?

The default choice field display of a reference property in appengine returns the choices as the string representation of the entire object. What is the best method to override this behaviour? I tried ...
0
votes
1answer
129 views

Get entity's property value in different format (GAE-Python)

In google app engine When i try to get propery value by ReferenceProperty element It return referenced entity value in different format Like: real stored value "Name" : "demoname" when i get and ...
0
votes
1answer
130 views

Need help understanding ReferenceProperty

Say I have two classes: class A(db.Model): class B(db.Model): a_reference = ReferenceProperty(A) I can now do the following: a = A() a.put() b = B(); b.a_reference = a.key() b.put() The ...
0
votes
2answers
81 views

how do I obtain all the elements of a generator expression I wrote?

I am using google-app-engine webapp, part of the code is : class Post(db.Model): title = db.StringProperty(required=True) def categories(self): return (x.category for x in ...
0
votes
1answer
533 views

Google App Engine - ReferenceProperty() gives error - Generic reference - Polymodel

Given a Polymodel in Google App Engine, likeso: from google.appengine.ext import db from google.appengine.ext.db import polymodel class Base(polymodel.PolyModel): def add_to_referer(self): ...
0
votes
3answers
944 views

Deleting erroneous ReferenceProperty properties in AppEngine

Most of the time, the errors you get from your model properties will happen when you're saving data. For instance, if you try saving a string as an IntegerProperty, that will result in an error. The ...