【发布时间】:2014-06-26 00:34:27
【问题描述】:
我有以下场景:
type Band struct {
Name string
LocationId *datastore.Key
Albums []Album
}
type Album struct {
Name string
GenreId *datastore.Key
Year int
}
我想要做的是查询 Bands Albums 密钥以获取具有特定 GenreId 密钥的专辑。
【问题讨论】:
标签: google-app-engine go google-cloud-datastore