如何覆盖 has_many 中定义的 :order

发布于 2024-10-03 09:26:05 字数 361 浏览 3 评论 0原文

我正在

class Authors 
has_many :books, :order => 'name ASC'

尝试查询按名称 DESC 排序的所有书籍

Authors.books.order('name DESC')

,但结果是

SELECT * FROM .... ORDER BY name ASC, name DESC

,结果返回时按名称排序 ASC

有没有办法删除关联中的原始顺序或覆盖它?或者在关系中指定顺序是一个坏主意?

使用 Rails 3.0.3

I have

class Authors 
has_many :books, :order => 'name ASC'

I am trying to query all the books sorted by name DESC

Authors.books.order('name DESC')

but the result is

SELECT * FROM .... ORDER BY name ASC, name DESC

and the results come back with the name sorted ASC

is there a way to remove the original order in the association or override it? Or is specifying an order in a relation a bad idea?

using Rails 3.0.3

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

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

发布评论

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

评论(3

月亮是我掰弯的 2024-10-10 09:26:05

使用重新排序

Authors.books.reorder('name DESC')

Use reorder:

Authors.books.reorder('name DESC')
来日方长 2024-10-10 09:26:05

.reorder() 在 Rails 3.0.3 中已被弃用,取而代之的是 . except(:order).order()

所以使用这个:

Authors.books.except(:order).order('name DESC')

.reorder() has been deprecated in Rails 3.0.3 in favor of .except(:order).order()

So use this:

Authors.books.except(:order).order('name DESC')
娇俏 2024-10-10 09:26:05
Author.first.books.reverse_order
Author.first.books.reverse_order
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文