Pregunta

Is it possible to add OR statements to a scope argument in a rails model something like

scope :west_coast, where(:st => "CA" || "WA" || "OR")
¿Fue útil?

Solución

The question is really how to make an sql WHERE ... IN statement using activerecord:

scope :west_coast, where(st: %w(CA WA OR))

Otros consejos

Try this:

scope :west_coast, where(['st = ? or st = ? or st = ?'], "CA", "WA", "OR")
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top