我有这个配置:
model Box < ActiveRecord::Base
has_many :toys
has_many :inventories, :through => :toys
scope :for_inventory, lambda{ |inv| joins(:toys).where("toys.inventory_id = ?",inv) }
end
model Toy < ActiveRecord::Base
belongs_to :box
belongs_to :inventory
end
model Inventory < ActiveRecord::Base
has_many :toys
has_many :boxes, :through => :toys
end
现在,这是担心,
Inventory.find(2).boxes.count
>> 140
,而
Box.for_inventory(2).count
>> 506
Box.for_inventory(2).uniq.count
>> 506
问题是,如果Box
包含多个Toys
,则会多次返回。
所以,我认为我可以覆盖<=>
类的Box
运算符,因此.uniq
实际上会执行某些操作并将列表从506重新设置为140.但是,有没有更好的方法更改Box::for_inventory
范围,以便在请求时执行此操作?