mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Associations guide: Add note that you must use the build_ prefix to build associations of the belongs_to and has_one type
This commit is contained in:
parent
949eb91d0e
commit
697f734455
1 changed files with 4 additions and 0 deletions
|
@ -550,6 +550,8 @@ build_customer
|
|||
create_customer
|
||||
</ruby>
|
||||
|
||||
NOTE: When creating a new +belongs_to+ or +has_one+ association you must use the +build_+ prefix to build the association, rather than the +association.build+ method that would be used for +has_many+ or +has_and_belongs_to_many+ associations.
|
||||
|
||||
h6(#belongs_to-association). <tt><em>association</em>(force_reload = false)</tt>
|
||||
|
||||
The <tt><em>association</em></tt> method returns the associated object, if any. If no associated object is found, it returns +nil+.
|
||||
|
@ -817,6 +819,8 @@ build_account
|
|||
create_account
|
||||
</ruby>
|
||||
|
||||
NOTE: When creating a new +has_one+ or +belongs_to+ association you must use the +build_+ prefix to build the association, rather than the +association.build+ method that would be used for +has_many+ or +has_and_belongs_to_many+ associations.
|
||||
|
||||
h6(#has_one-association). <tt><em>association</em>(force_reload = false)</tt>
|
||||
|
||||
The <tt><em>association</em></tt> method returns the associated object, if any. If no associated object is found, it returns +nil+.
|
||||
|
|
Loading…
Reference in a new issue