Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update associations.rst #3553

Merged
merged 1 commit into from
Dec 12, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions en/orm/associations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@ Possible keys for hasMany association arrays include:
- **strategy**: Defines the query strategy to use. Defaults to 'select'. The other
valid value is 'subquery', which replaces the ``IN`` list with an equivalent
subquery.
- **saveStrategy**: Either ‘append’ or ‘replace’. Indicates the mode to be used for saving associated entities. The former will only create new links between both side of the relation and the latter will do a wipe and replace to create the links between the passed entities when saving.
- **finder**: The finder method to use when loading associated records.

Once this association has been defined, find operations on the Articles table can
Expand Down