是否能够定义类似于Rails ActiveRecord
方式的范围?
答案 0 :(得分:0)
http://datamapper.org/docs/find.html
class Zoo
# all the keys and property setup here
def self.open
all(:open => true)
end
def self.big
all(:animal_count => 1000)
end
end
big_open_zoos = Zoo.big.open
所以关于范围没什么特别的,只是红宝石。