在 mongodb 上使用 ming 按相关项目排序

发布于 2024-12-05 18:54:43 字数 296 浏览 1 评论 0原文

设置

一个 TurboGears2 项目,使用 ming 作为 mongodb 的 ORM。我习惯于使用关系数据库和 Django ORM。

问题

Ming 声称可以像关系数据库一样与 mongodb 进行交互,在关系数据库中常见的操作是通过外键的属性对查询进行排序。在 Django ORM 中,这用双下划线表示,如下所示: MyModel.objects.all().order_by('user__username')

ming 中是否有等效项?

setup

A TurboGears2 project using ming as an ORM for mongodb. I'm used to working with relational databases and the Django ORM.

question

Ming claims to let to interact with mongodb like it's a relational database and a common thing to do in a relational database is sort a query by a property of a foreign key. With the Django ORM this is expressed with double underscores like so: MyModel.objects.all().order_by('user__username')

Is there an equivalent for this in ming?

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

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

发布评论

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

评论(1

穿透光 2024-12-12 18:54:43

我从未使用过 ming,但他们似乎有一个可以添加到查询中的 sort 方法,请查看

#querying-the-database" rel="nofollow">这里,我使用 mongoengine< /a>,它有很棒的文档,而且非常类似于 django ORM

I have never used ming, but they seem to have a sort method that you can add to a query, check it out here, not much in the form of documentation

I use mongoengine, it has great documentation and its very similar to the django ORM

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