has_many:through关系创建的连接表是否也具有has_many关系?

时间:2016-02-12 03:46:13

标签: ruby-on-rails relation activerecord-relation

has_many through关系创建的模型如下所示:

class MerchantOrder < ActiveRecord::Base
  belongs_to :order
  belongs_to :user
  has_many :products
end

但我不确定这是否可行。有什么理由不起作用吗?

0 个答案:

没有答案