1
내가이 같은 육식 동물을위한 DataMapper의 범위가 가정?DataMapper 범위가 연결된 모델의 범위를 사용할 수 있습니까?</p> <pre><code>class Animal #... def self.carnivores all(:diet => 'meat') end #... end </code></pre> <p>나는 것을 재사용 할 수있는 협회의 범위에서 범위 :
class Zoo
#...
def self.with_carnivores
# Use `Animal.carnivores` scope to get zoos that have some?
all(:animals => ???)
end
#...
end