RoRプロジェクトの車と写真の2つのモデルがあります
class Car < ActiveRecord::Base
has_many :pictures, :as => :imageable, :dependent => :destroy
end
と
class Picture < ActiveRecord::Base
belongs_to :imageable, :polymorphic => true, :dependent => :destroy
end
子供の写真だけですべての車を見つけるにはどうすればよいですか?