次のような肉食動物用の DataMapper スコープがあるとします。
class Animal
#...
def self.carnivores
all(:diet => 'meat')
end
#...
end
関連付けのスコープでそのスコープを再利用できますか?
class Zoo
#...
def self.with_carnivores
# Use `Animal.carnivores` scope to get zoos that have some?
all(:animals => ???)
end
#...
end