我想找到有孩子的东西。所以给出:
class Foo < ActiveRecord::Base
has_many :bars
has_many :bazes
scope :is_a_parent ...what goes here?...
我想得到有任何酒吧或任何 bazes 的 Foos。当然,使用原始 SQL,所有事情都是可能的exists (select 1 from bars ...) or exists (select 1 from bazes ...)
,但是 yuk。
当然有一些方法可以any?
与 arelor
方法结合使用吗?不使用 SQL 的其他方法?