如何让Data Mapper返回特定数量的元素?

时间:2012-04-25 20:27:43

标签: ruby datamapper

说我有

class MyClass
  include DataMapper::Resource
  property :id, Serial
  property :my_property, Text
end

如何拨打电话最多返回3个项目

MyClass.all(:my_property => "some_text", :max => 3)

其中:max => n表示返回n项。

我很确定这里有内置功能,但我找不到它。 感谢。

1 个答案:

答案 0 :(得分:2)

使用:limit

MyClass.all(:my_property => "some_text", :limit => 3)