0
이의 내가 있다고 가정 해 봅시다 :사용 named_scope (루비 온 레일스 + Searchlogic 질문)
class ForumTopic < ActiveRecord::Base
has_many :forum_posts
named_scope :number_of_posts, ??????
end
class ForumPost < ActiveRecord::Base
belongs_to :forum_topic
end
내가 넣어해야합니까 ????? 같은 searchlogic 쿼리를 할 수 있도록 :
ForumTopic.descend_by_number_of_posts
어떤 도움은 매우 크게 감사하겠습니다!