I have 2 tables :products and :providers with has_and_belongs_to_many association.
I would like to do this
@list = Product.find( :select => "id,title", :include => { :providers => { :select => "id,title" } } )
How can specify fields for included table? Thx!