我有 2 个模型
class Foo < ActiveRecord::Base
# columns are
# max_spots
has_many :bars
end
class Bar < ActiveRecord::Base
# columns are
# a_id
belongs_to :foo
end
我需要获取 max_spots 大于与其关联的条数的所有 Foos,但我需要通过活动记录而不是通过每个 Foos 来完成
class Foo
#bad
def self.bad_with_spots_left
all.select do |foo|
foo.max_spots - foo.bars.count > 0
end
end
#good but not working
def self.good_with_spots_left
joins(:bars).select('COUNT(bars.id) AS bars_count').where('max_spots - bars_count > 0')
end
end
我知道我可以在 foo 中添加一个计数器缓存,但只是想知道没有它我怎么能做到这一点。谢谢!