Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This looks like it should be something pretty easy but I can't seem to get it to work. I have a model with a has_many relationship and I'd like a scope on the parent that allows me to select only certain attributes for each.

An example:

class Bakery < ActiveRecord::Base
  has_many :pastries
  scope :summary, select([:id, :name, 'some option calling pastries.summary'])

class Pastry < ActiveRecord::Base
  belongs_to :bakery
  scope :summary, select([:id, :image_url])

I'd like to be able to call something like Bakery.first.summary and get a Bakery model with only the id and name populated and for each pastry in it's pastries array to only have the id and image_url attributes populated.

share|improve this question

1 Answer

up vote 1 down vote accepted

You could do this, but it won't affect the SQL queries that are made as a result (assuming you're trying to optimise the underlying query?):

class Pastry
  ...
  def summary
    {
      :id => self.id,
      :image_url => self.image_url
    }
  end
end

class Bakery
  ...
  def summary     
    pastries.collect {|i| i.summary }
  end
end

This would then give you an array of hashes, not model instances.

ActiveRecord doesn't behave how you're expecting with models - it will fetch whatever data it thinks you need. You could look at using the Sequel gem instead, or executing a raw SQL query such as:

Pastry.find_by_sql("SELECT id, name from ...")

But this could give you unexpected behaviour.

share|improve this answer
Your correct that I'm trying to optimize the queries. Strange that there is the ability to affect the query created for a single model but not the query used by has_many relationship. – jwarzech Jan 8 '12 at 9:58
Also take a look at DataMapper - you might find this does what you want - it has "lazy loading". datamapper.org – stef Jan 8 '12 at 11:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.