OK, I\'ve been playing around with some of the eager loading things, and have 2 models something like:
Class Recipe < ActiveRecord::Base belongs_to :c
I've been using default_scope to do it on selected models where I always want to eager load:
class Post < ActiveRecord::Base has_many :comments default_scope :include => :comments, :order => ["title ASC"] ... end