i have a one to many relationship between two entities the first one is a satellite and the second one is channel and the satellite form returns a satellite name which i want to appear in another html page with the channel data where you can say that this channel is related to that satellite how to make this
|
|
This sounds like a good case for using the ReferenceProperty that is part of the Datastore API of App Engine. Here's an idea to get you started:
With this you can assign channels like so:
Then loop through channels for a given Satellite object:
Anyway, this pretty much follows this article that describes how to model entity relationships in App Engine. Hope this helps. |
|||
|
|
