Hi all! Please, explain me how to implement next.
Used two models for Blog application: class BlogPost(db.Model): title = db.StringProperty() text = db.TextProperty() tags = db.ListProperty(BlogTag) class BlogTag(db.Model): name = db.StringProperty() # count of all posts marked at this tag count = db.IntProperty() Please, help me understand how is good way to implement this task. I have find all tags for selected post, and also select all posts for specified tag name. How it implemented in AppEngine? Thanks! (I'am sorry if this very simple question for you) -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. 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.
