私は以下のような関連付けを持っています: Location Class
class Location < ActiveRecord::Base
has_many :items
end
品目クラス
class Item < ActiveRecord::Base
belongs_to :location
belongs_to :category
end
カテゴリ クラス
class category < ActiveRecord::Base
has_many :items
end
ここで、Location.categories にクエリを実行したいと思います (ロケーション アイテムのすべてのカテゴリを表示します)。どうすればこれを達成できますか?