需要按参考属性中的属性排序,有什么好的解决方案吗?

发布于 2024-09-11 05:42:58 字数 814 浏览 3 评论 0原文

假设我有两种:

class Account(db.Model):
  name = db.StringProperty()

  create_time = db.DataTimeProperty()
  last_login = db.DateTimeProperty()
  last_update = db.DataTimeProperty()


class Relationship(db.Model)
  owner = db.ReferenceProperty(Account)
  target = db.ReferenceProperty(Account)
  type = db.IntegerProperty()

我想获得以下查询的等价物:

SELECT target 
FROM Relationship
WHERE owner = :key AND type = :type
ORDERBY target.last_login DESC 

如何做到这一点?

参考:http://www.mail-archive.com/ [电子邮件受保护]/msg15878.html

Say I have 2 kind:

class Account(db.Model):
  name = db.StringProperty()

  create_time = db.DataTimeProperty()
  last_login = db.DateTimeProperty()
  last_update = db.DataTimeProperty()


class Relationship(db.Model)
  owner = db.ReferenceProperty(Account)
  target = db.ReferenceProperty(Account)
  type = db.IntegerProperty()

I want to get the equivalence of following query:

SELECT target 
FROM Relationship
WHERE owner = :key AND type = :type
ORDERBY target.last_login DESC 

How to do that?

reference: http://www.mail-archive.com/[email protected]/msg15878.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃颗糖壮壮胆 2024-09-18 05:42:58

数据存储区中没有该查询的等效项。几点:

  1. 您不能选择单个属性。 SELECT 始终为 SELECT *(您选择整个实体)。
  2. 你不能进行连接。您需要对模型进行非规范化以适应您将执行的查询,或执行多个查询。

因此,为了实现您的目标,您需要将 last_login 存储在 Relationship 中,或者有第三个模型作为该特定查询的索引。

There's no equivalent for that query in datastore. Some points:

  1. You can't select a single property. SELECT is always SELECT * (you select a whole entity).
  2. You can't do joins. You need to denormalize your models to fit the queries you will perform, or perform multiple queries.

So to achieve your goal, you need to have last_login stored in Relationship, or have a 3rd model to serve as index for that specific query.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文