I have this in my controller:

class User::ResourcesController < User::UserController
  def index
     @resource_type = ResourceType.find_by_name(params[:resource_type].to_s.titleize)
     @products = @products.includes(:resources).where(:resources => { :resource_type_id => @resource_type.id })

     respond_to do |format|
       format.html # index.html.erb
       format.xml  { render :xml => @resources }
     end
  end
end

I am trying to get my resources to be filtered so in my view i can use the code below and have it only pull the resources that have the correct resource_type_id.

@products.each do |product|
  product.resources.count
end
link|improve this question

45% accept rate
feedback

1 Answer

@products = Product.includes(:resources).where("resources.resource_type_id = ?", @resource_type.id)
link|improve this answer
Thanks, but that doesn't work either. – Joshua Novak Mar 31 '11 at 4:55
oops I just realized that you have @products = @products.inc.... (and I repeated it). Where is the original @products variable coming from? Try my edited answer above. – Adam Albrecht Mar 31 '11 at 17:03
feedback

Your Answer

 
or
required, but never shown

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