说我有
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项。
我很确定这里有内置功能,但我找不到它。 感谢。
答案 0 :(得分:2)
使用:limit
MyClass.all(:my_property => "some_text", :limit => 3)