使用实体键从数据存储中检索条目
我的数据存储区包含:一个 id/Name id = 30001
的条目,
我尝试过:SELECT * FROM Skill WHERE Id=30001
和一些其他变体。
如何使用实体键检索条目?
My Datastore contains: an entry with an id/Name id = 30001
I tried: SELECT * FROM Skill WHERE Id=30001
and a few other variations.
How can i use the entity key to retrieve entries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过给定 ID 检索模型的最快且更方便的方法是调用 get_by_id() 模型的类方法:
使用 GQL 速度要慢得多,并且是使用
KEY
实现的:The fastest and more convenient method to retrieve a Model by a given id is by calling the get_by_id() class method of the Model:
Using GQL is pretty much slower and it's achieved using
KEY
: