在 Google App Engine 上将 JDO 与 HRD 结合使用
为了与 HRD 获得一致的查询,我们被告知要使用祖先查询。
我正在使用 JDO,但是我找不到使用 JDO 查询的祖先查询的示例。
有人可以告诉我这是否可能吗?如果可以,你能给我举个例子吗?
谢谢。
To get consistent queries with HRD, we are told to use ancestor queries.
i am using JDO, however i cannot find an example of an ancestor query using JDO Query.
can someone tell me if its possible, and if so can you point me to an example?
thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,无法在 JDO 中进行祖先查询,只能在低级 API 中进行。不过,如果您可以选择数据库框架,我强烈建议切换到 Objectify。
如果必须使用 JDO,则可以向每个子实体添加“父”属性,这将允许您查询实体的直接父实体。
No, there's no way to do ancestor queries in JDO, only in the low-level API. If you have a choice of database frameworks, though, I would strongly recommend switching to Objectify.
If you must use JDO, you could add a 'parent' property to each child entity, which would allow you to query on the immediate parent of an entity.