Anthony Bishopric
Anthony Bishopric

Reputation: 1296

Does :include work on ActiveRecord instances?

All the examples of :include for eager loading are for class-level querying. I tried it on my model instance and it still issued a bunch of queries - does it work on instance methods?

 #in controller
 @emails = person.sent_emails(:include => [:recipient])

 #in view
 render @emails

 # _email.html.erb partial
 <h1><%= email.recipient.name %></h1>
 <p>
 <%= email.content %>
 </p>

 #still issues a select * for emails, N+1 for recipients :/

Upvotes: 7

Views: 1748

Answers (1)

aNoble
aNoble

Reputation: 7072

It looks a bit Rails 2ish I know and there may be a better Rails 3 way but this does work.

@emails = person.sent_emails.find(:all, :include => :recipient)

Edit: See the comment by BaroqueBobcat for a better method in Rails 3

Upvotes: 3

Related Questions