我有帐户模型,
class Account < ActiveRecord::Base
has_many :account_games
def score
account_games.map(&:score).sum
end
end
和 AccountGame :
class AccountGame < ActiveRecord::Base
belongs_to :account
end
获得最高分的帐户的最佳方法是什么?如您所见, score 是相关 account_games score 字段的总和。
谢谢