如何在 Sequel 中按降序排列关联
How to order association in descending order in Sequel
鉴于此 class
class User < Sequel::Model
one_to_many :rounds, order: :date
end
我想做的是按日期降序排序。
我试过像 ActiveRecord 支持的那样,但那不是要走的路。
one_to_many :rounds, order: date: :desc
一个解决方案是创建一个数据集方法,但我觉得必须有更好的方法来做到这一点。
执行此操作的方法是使用 Sequel.
附带的众多 "builders" 之一
这次是Sequel.desc
一次。
one_to_many :rounds, order: Sequel.desc(:date)
鉴于此 class
class User < Sequel::Model
one_to_many :rounds, order: :date
end
我想做的是按日期降序排序。
我试过像 ActiveRecord 支持的那样,但那不是要走的路。
one_to_many :rounds, order: date: :desc
一个解决方案是创建一个数据集方法,但我觉得必须有更好的方法来做到这一点。
执行此操作的方法是使用 Sequel.
附带的众多 "builders" 之一这次是Sequel.desc
一次。
one_to_many :rounds, order: Sequel.desc(:date)