在 mongodb 上使用 ming 按相关项目排序
设置
一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从未使用过 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 documentationI use mongoengine, it has great documentation and its very similar to the django ORM