私が持っているとしましょう:
class ForumTopic < ActiveRecord::Base
has_many :forum_posts
named_scope :number_of_posts, ??????
end
class ForumPost < ActiveRecord::Base
belongs_to :forum_topic
end
何を入れようかな????? 次のような検索ロジッククエリを許可します。
ForumTopic.descend_by_number_of_posts
どんな助けでも大歓迎です!