class Document
has_many :lines
end
class Line
belongs_to :document
end
sort_by @q, :total
こんにちは、ドキュメントの行の合計(行数量)でドキュメントをソートする必要があります。 私はransackerについて考えましたが、正しく書き込む方法はありますか? ransacker
は、私は次の二つのモデルがあります。だから、 class Game
belongs_to :tournament, inverse_of: :games
validates_presence_of :name
end
class Tournament
has_many :games, dependent: :destroy
validates_nu
整数を返すモデルでメソッドをソートする方法を理解しようとしています。 class Business < ActiveRecord::Base
has_many :questions
def questions_count
questions.count
end
end
私は掻き回すを使用して、私のテーブル内のquestions_count方法でソー