如何在Datamapper中正确定义范围

时间:2012-03-24 21:43:32

标签: sinatra datamapper

是否能够定义类似于Rails ActiveRecord方式的范围?

1 个答案:

答案 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

所以关于范围没什么特别的,只是红宝石。