I\'ve seen a few examples of passing an :include
hash value when calling one of ActiveRecord\'s find
methods in Rails. However, I haven\'t seen any
You can add :include
to your model's associations to eager load the second-order associations when the object is loaded.
http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html#method-i-belongs_to http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html#method-i-has_many