On Mon, Nov 3, 2008 at 9:05 AM, pr3d4t0r <[EMAIL PROTECTED]> wrote: > Regarding nomenclature: what is the best way to refer to things in > App Engine that may have a different "official" Python name? Here are > some examples: > > Kind --> it's really a class, a specialization of the db.Model or > db.Expando classes.
Not quite. An entity may look like an instance of a Kind when accessed through the db.Model layer, but it isn't fundamentally a specific Kind. For instance, the Key-space is across all entities of your datastore, not of a particular kind. Also, if you change your db.Model, existing entities aren't changed automatically. Dave. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
