私は、次のSQL文を持っている: のActiveRecordをレールにそれを変換する方法SELECT article_id FROM publications WHERE category_id IN (SELECT id FROM categories WHERE parent_id = 3)
のActiveRecord: "IN" SQL文
?
私は試しました:Article.find(:all, :conditions => ["publications.category_id IN(?)", 3], :include => [:publications])
、それは空の配列を返します。
モデル:
class Article < ActiveRecord::Base
has_many :publications
has_many :categories, :through => :publications
class Category < ActiveRecord::Base
belongs_to :parent, :class_name => 'Category'
has_many :children, :class_name => 'Category', :foreign_key => :parent_id
has_many :articles, :through => :publications
has_many :publications
class Publication < ActiveRecord::Base
belongs_to :article
belongs_to :category
を探すために知っていません、記事とカテゴリ?私はあなたが何かそこに間違っているかもしれないと思う。 – Yardboy