class method
self.first
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
self.first(*args)
A convenience wrapper for find(:first, *args). You can pass in all the same arguments to this method as you can to find(:first).
Parameters
-
argsrest
Source
# File activerecord/lib/active_record/base.rb, line 596
def first(*args)
find(:first, *args)
end
Defined in activerecord/lib/active_record/base.rb line 596
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Base