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.

link|improve this question

74% accept rate
feedback

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.

link|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 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 at 11:18
feedback

Your Answer

 
or
required, but never shown

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