Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't seem to find a solution to what seems to me like a simple problem.

Sitemap.find(:all, :conditions => { :controller => 'sample', :action => '!index' })

Now obviously the ! in 'index' doesn't belong there, but I put it there to illustrate that I want any result EXCEPT 'index'. I've tried something like the line below but I've gotten server errors whenever I try it.

Sitemap.find(:all, :conditions => { :controller => 'sample', "action <> 'index'" })
share|improve this question

1 Answer

up vote 2 down vote accepted

Use the array syntax for this:

Sitemap.all(:conditions => ["controller = ? AND action <> ?", 'sample', 'index']

Hash syntax is only useful if you're checking for equality.

share|improve this answer
Perfect! Thanks! – JakeTheSnake Jan 30 '11 at 21:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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