Tagged Questions
7
votes
1answer
980 views
In Google App Engine, how do I use reference properties between two entities that reference each other?
If I have two types of models that each reference each other, whichever one I try to define first says it does not recognize the referenced other type (because it is defined further down in the file). ...
3
votes
3answers
404 views
Get the string-encoded key of an entity from a reference property in appengine
In order to get the string-encoded key of an entity, I just do the following:
key = entity.key()
string_encoded_key = str(key)
I have a reference to another entity via the ReferenceProperty.
class ...
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
123 views
How to set a ReferenceProperty using only a Key, not getting the Model
I want to be able to, given the key to a model in the datastore, simply set the referenceproperty without loading the model itself (as I don't need that information).
For example:
class ...
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
1answer
157 views
How to perform a many-to-many filter using ReferenceProperty in Google App Engine?
This is my model, Players and Clubs. As a Club can have many players and a player can have many clubs (in its carrer), I used a many-to-many relationship:
class Club(db.Model):
name = ...
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
2answers
504 views
Google App Engine Datastore query problem
I have the following problem:
I'd like to retrieve all products of a category
class Category(emodel):
name = db.StringProperty()
class Channel(emodel):
name = db.StringProperty()
...
0
votes
2answers
50 views
GAE: Using properties for keys() in ModelChoiceProperty boxes
I have a model User which appears as a ReferenceProperty in another model, Group.
When I create a form for Group, using Meta, the form's values contain lots of generated strings. I'd like to stop ...
0
votes
1answer
405 views
Google app engine datastore reference or not?
i am filling up a big table with text items from different countries. My question is:
Should i use a referencePropery to link to languages in another table?. Thats the way i would do it in a normal ...
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 ...