我有一个模型,说:
class MyModel <ActiveRecord::Base
attr_accessible :id, :name
end
我想使用 meta_search ( https://github.com/ernie/meta_search ) 搜索这个模型,如何按 id 或 name 搜索?
我试过这个但不起作用:
MyModel.search(id_equals_or_name_contains: 'sample text')
元搜索文档说他们不支持不同的匹配类型(https://github.com/ernie/meta_search#ored-conditions),那么我应该如何实现呢?