mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #24326 from mechanicles/highlight-word
Highlight the dynamic method finder 'find_by_' [ci skip]
This commit is contained in:
commit
30bb2d80b6
1 changed files with 2 additions and 1 deletions
|
@ -169,7 +169,8 @@ module ActiveRecord #:nodoc:
|
||||||
# ActiveRecord::RecordNotFound error if they do not return any records,
|
# ActiveRecord::RecordNotFound error if they do not return any records,
|
||||||
# like <tt>Person.find_by_last_name!</tt>.
|
# like <tt>Person.find_by_last_name!</tt>.
|
||||||
#
|
#
|
||||||
# It's also possible to use multiple attributes in the same find by separating them with "_and_".
|
# It's also possible to use multiple attributes in the same <tt>find_by_</tt> by separating them with
|
||||||
|
# "_and_".
|
||||||
#
|
#
|
||||||
# Person.find_by(user_name: user_name, password: password)
|
# Person.find_by(user_name: user_name, password: password)
|
||||||
# Person.find_by_user_name_and_password(user_name, password) # with dynamic finder
|
# Person.find_by_user_name_and_password(user_name, password) # with dynamic finder
|
||||||
|
|
Loading…
Reference in a new issue