Is it possible to have a class based on db.Model that contains a list
of other classes also based on db.Model but where the second classes
are not stored in the Datastore separately but rather are stored with
the first class. In other words I want a one-to-many relationship but
do not want to store the "many's" as separate transactions for
performance reasons nor do I want use entity groups because I do not
have a need to reference the "many's" outside of referencing the
"one".

for example:

class entity(db.Model):
     name = db.StringProperty()

class one(db.Model):
         entitylist = db.??? where ??? defines a list of entity.



Thanks,
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to