新手问题 has_many, :through 在富连接时可以添加条件?

stephen · 2014年01月05日 · 最后由 kikyous 回复于 2014年01月05日 · 1816 次阅读
has_many line_items
has_many products, :through => :line_items

因为我在中间表添加了一个属性,想搜索出当这个属性为 null 的 product! 可以在

has_many products, :through => :line_items

添加条件?

rails 4

class Customer < ActiveRecord::Base
  has_many :confirmed_orders, -> { where "confirmed = 1" },
end

rails 3

class Customer < ActiveRecord::Base
  has_many :confirmed_orders,  :conditions => "confirmed = 1"
end
需要 登录 后方可回复, 如果你还没有账号请 注册新账号