如何在'包含'中包含多态关联轨道

时间:2015-02-17 09:46:17

标签: ruby-on-rails-3 activerecord polymorphic-associations ruby-1.8.7 meta-search

我在模型中有这个:

    belongs_to :merchant_owner, :polymorphic => true

我想这样查询:

   @search = Merchant.includes(:merchant_owner).search
   @merchants = @search.order

但是我在观看中遇到了这个错误:

 You can't create a polymorphic belongs_to join without specifying the polymorphic class!

这一行:

@search.count

我正在使用ruby 1.8.7和rails 3.0.20以及meta search 1.0.6。有谁知道如何使包含与merchant_owner一起使用?

0 个答案:

没有答案