Domanda

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")
È stato utile?

Soluzione

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

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

Altri suggerimenti

Try this:

scope :west_coast, where(['st = ? or st = ? or st = ?'], "CA", "WA", "OR")
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top