开发者

Rails: order using a has_many/belongs_to relationship

开发者 https://www.devze.com 2022-12-08 01:43 出处:网络
I was wondering if it was possible to use the find method to order the results based on a class\'s has_many relationship with another class. e.g.

I was wondering if it was possible to use the find method to order the results based on a class's has_many relationship with another class. e.g.

# has the columns id, name
class Dog < ActiveRecord::Base
  has_many :dog_tag开发者_如何学Cs
end

# has the columns id, color, dog_id
class DogTags < ActiveRecord::Base
  belongs_to :dog
end

and I would like to do something like this:

@result = DogTag.find(:all, :order => dog.name)

thank you.


In Rails 4 it should be done this way:

@result = DogTag.joins(:dog).order('dogs.name')

or with scope:

class DogTags < ActiveRecord::Base
  belongs_to :dog
  scope :ordered_by_dog_name, -> { joins(:dog).order('dogs.name') }
end

@result = DogTags.ordered_by_dog_name

The second is easier to mock in tests as controller doesn't have to know about model details.


You need to join the related table to the request.

@result = DogTag.find(:all, :joins => :dog, :order => 'dogs.name')

Note that dogs is plural in the :order statement.

0

精彩评论

暂无评论...
验证码 换一张
取 消