Frage

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")
War es hilfreich?

Lösung

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

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

Andere Tipps

Try this:

scope :west_coast, where(['st = ? or st = ? or st = ?'], "CA", "WA", "OR")
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top