我正在使用ryanb-scope-builder,我面臨以下問題。我們可以在作用域構建器中作用域嗎?
def self.search(options)
scope_builder do |builder|
builder.released.visible
builder.cheap if options[:cheap]
end
end
這生成查詢其中有:
builder.released.visible *AND* builder.cheap if options[:cheap]
而我想的範圍要像進行或運算
有沒有能夠解決這個問題的任何範圍建設者寶石? 謝謝
此問題是http://stackoverflow.com/questions/30的重複05488 /主動記錄分離 – samuil