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
:include
find
You can't use relations as Class methods. It is instance methods. You can call
@user.favorites
Check out this screencast about Eager Loading
http://railscasts.com/episodes/22-eager-loading
It will be
User.find(:all, :include => :favorites)
or for Rails 3.x
User.includes(:favorites)