有三个模型 Bill ,LineItem and product
Bill has_many :line_items
LineItem belongs_to :product
Product 有两个属性:number and name
假设 a_bill.line_items.first.product.number = "a_product_number"
我现在想在搜索矿中输入"a_product_number",找到包含这个 product 的 bill
应该如何定义 index 呢?
这是当前的定义,可是找不到我想要的那个 bill 记录
define_index do
...
indexes line_items.product(:number)
...
set_property :delta => true
end