Google App Engine - Cannot See Children in Datastore Viewer
I have 开发者_StackOverflow社区the following kinds/relationships in my datastore:
UserAccount 1-to-1 PersistentLogin 1-to-many PersistentLogins
They are all in the same entity group and UserAccount is the parent. Should I expect to see the other kinds in the datastore viewer? Currently, I only see UserAccount entities, but I'm pretty confident the other entities are there because my code is working as expected. Is this just a nuance of the datastore viewer?
You should see them all in the datastore view, but only if they have at least one indexed property - kinds with no indexed properties don't currently show up (known bug).
精彩评论