Eager Loading: Load ALL Associations

What you may be looking for is:

ARObject.find_by_id(1, :Include => [:associated_model1, :associated_model2])

Caleb wrote: