更像是压倒一切的顺序
Entity.associations.order("field ASC").reorder("other_field DESC")
# => result: GET ... order by other_filed DESC
是否可以覆盖范围选项?
Entity.associations.where("field = 1").where("field = 2")
# => GET ... where "field" = 1 and "field" = 2
# Desirable:
Entity.associations.where("field = 1").rescope(where("field = 2"))
# => GET ... where "field" = 2
PS
导轨 3
PSS 接受的答案对 Rails4 有效