0

说我有

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 项。

我很确定存在一个内置函数,但我找不到它。谢谢。

4

1 回答 1

2

利用:limit

MyClass.all(:my_property => "some_text", :limit => 3)
于 2012-04-25T20:39:06.813 回答