I'm trying to query an OR WHERE into an acts-as-taggable-on query, like so...

Business.tagged_with(params[:query], :any => true)

But I'd also like to perform at the same time an or_where like this...

Business.tagged_with(params[:query], :any => true).or_where('name LIKE ?', "%#{params[:query]}%")

This obviously doesn't work as there is no or_where method but would someone know how to perform this correctly?

In short, I'm trying to find a match against any tags OR business name. Thanks.

link|improve this question

60% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can OR two queries together by using the | operator like so:

Business.tagged_with(params[:query], :any => true) | Business.where('name LIKE ?', "%#{params[:query]}%")

Note that this will eager load the results, so you can't apply any more conditions after this, like ordering. It will return an array with all of the matching results in it, excluding duplicates.

link|improve this answer
Hey, sorry for the delay, yes this works great. Thanks. – Andrew Lank Jun 28 '11 at 16:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.