diff options
| author | Matthias Schmidt <mail@m-schmidt.eu> | 2012-04-28 11:29:11 +0200 |
|---|---|---|
| committer | Matthias Schmidt <mail@m-schmidt.eu> | 2012-04-28 11:29:11 +0200 |
| commit | 0297e8e4ddc034bcb8ed477efff91d8fe104cb39 (patch) | |
| tree | 695495e50b221418dcccc853cb12cab79282e4c9 | |
| parent | 72795d7257f3fbaaf235c6dad9a398bb1430de8d (diff) | |
| download | rails-0297e8e4ddc034bcb8ed477efff91d8fe104cb39.tar.gz rails-0297e8e4ddc034bcb8ed477efff91d8fe104cb39.tar.bz2 rails-0297e8e4ddc034bcb8ed477efff91d8fe104cb39.zip | |
Correct small consistency issue in AR querying guide
| -rw-r--r-- | guides/source/active_record_querying.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_querying.textile b/guides/source/active_record_querying.textile index 98937266ba..a0517eea1d 100644 --- a/guides/source/active_record_querying.textile +++ b/guides/source/active_record_querying.textile @@ -926,7 +926,7 @@ This code looks fine at the first sight. But the problem lies within the total n Active Record lets you specify in advance all the associations that are going to be loaded. This is possible by specifying the +includes+ method of the +Model.find+ call. With +includes+, Active Record ensures that all of the specified associations are loaded using the minimum possible number of queries. -Revisiting the above case, we could rewrite +Client.all+ to use eager load addresses: +Revisiting the above case, we could rewrite +Client.limit(10)+ to use eager load addresses: <ruby> clients = Client.includes(:address).limit(10) |
