我将如何在 Arel (这个和这个)或(这个和这个)中做到这一点
上下文是 rails 3.0.7
迈克的回答基本上就是你要找的
class Model < ActiveRecord::Base
def self.this_or_that(a1, a2, a3, a4)
t = Model.arel_table
q1 = t[:a].eq(a1).and(t[:b].eq(a2))
q2 = t[:c].eq(a3).and(t[:d].eq(a4))
where(q1.or(q2))
end
end
我在 Arel 上整理的一些幻灯片
你需要下拉到更原始的 AREL
t = Model.arel_table
a = (t[:a].eq(nil).and(t[:b].eq(nil)))
b = (t[:a].not_eq(nil).and(t[:b].not_eq(nil)))
Model.where(a.and(b))
我会把这一切都放在一个 where 块中。例如,这是一个基于类似复杂“where”子句的“范围”:
class Foo < ActiveRecord::Base
def self.my_complex_where(args)
where("(col1 = ? AND col2 = ?) OR (col3 = ? AND col4 = ?)",
args[:val1], args[:val2], args[:val3], args[:val4])
end
end
或者,您可以使用以下符号来执行此操作:
class Foo < ActiveRecord::Base
def self.my_complex_where(args)
where("(col1 = :val1 AND col2 = :val2) OR (col3 = :val3 AND col4 = :val4)",
:val1 => args[:val1],
:val2 => args[:val2],
:val3 => args[:val3],
:val4 => args[:val4])
end
end
除了已经给出的答案,您可能还想看看 gem ' squeel '
例子:
Person.where{(name =~ 'Ernie%') & (salary < 50000) | (name =~ 'Joe%') & (salary > 100000)}
我不知道辅助方法,但你总是可以下拉到(几乎)纯 SQL:
Client.where("orders_count = ? AND locked = ?", params[:orders], false)