From cab24945634bc22b0c0c5d10b72c83eaa09f1e41 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 1 Jan 2005 16:46:24 +0000 Subject: Updated documentation for associations #387 [canadaduane] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@299 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/lib/active_record/associations.rb | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'activerecord/lib') diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index 13396c48b1..019de942b9 100755 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -122,7 +122,7 @@ module ActiveRecord # All of the association macros can be specialized through options which makes more complex cases than the simple and guessable ones # possible. module ClassMethods - # Adds the following methods for retrival and query of collections of associated objects. + # Adds the following methods for retrieval and query of collections of associated objects. # +collection+ is replaced with the symbol passed as the first argument, so # has_many :clients would add among others has_clients?. # * collection(force_reload = false) - returns an array of all the associated objects. @@ -224,7 +224,7 @@ module ActiveRecord deprecated_build_method(association_name) end - # Adds the following methods for retrival and query of a single associated object. + # Adds the following methods for retrieval and query of a single associated object. # +association+ is replaced with the symbol passed as the first argument, so # has_one :manager would add among others has_manager?. # * association(force_reload = false) - returns the associated object. Nil is returned if none is found. @@ -280,7 +280,7 @@ module ActiveRecord module_eval "before_destroy '#{association_name}.destroy if has_#{association_name}?'" if options[:dependent] end - # Adds the following methods for retrival and query for a single associated object that this object holds an id to. + # Adds the following methods for retrieval and query for a single associated object that this object holds an id to. # +association+ is replaced with the symbol passed as the first argument, so # belongs_to :author would add among others has_author?. # * association(force_reload = false) - returns the associated object. Nil is returned if none is found. @@ -289,7 +289,7 @@ module ActiveRecord # same id as the associated object. # * association.nil? - returns true if there is no associated object. # - # Example: An Post class declares has_one :author, which will add: + # Example: A Post class declares has_one :author, which will add: # * Post#author (similar to Author.find(author_id)) # * Post#author=(author) (similar to post.author_id = author.id) # * Post#author? (similar to post.author == some_author) @@ -364,9 +364,12 @@ module ActiveRecord # # Any additional fields added to the join table will be placed as attributes when pulling records out through # has_and_belongs_to_many associations. This is helpful when have information about the association itself - # that you want available on retrival. + # that you want available on retrieval. Note that any fields in the join table will override matching field names + # in the two joined tables. As a consequence, having an "id" field in the join table usually has the undesirable + # result of clobbering the "id" fields in either of the other two tables. + # # - # Adds the following methods for retrival and query. + # Adds the following methods for retrieval and query. # +collection+ is replaced with the symbol passed as the first argument, so # has_and_belongs_to_many :categories would add among others +add_categories+. # * collection(force_reload = false) - returns an array of all the associated objects. @@ -574,4 +577,4 @@ module ActiveRecord end end end -end \ No newline at end of file +end -- cgit v1.2.3