Exclude some ids from result in Rails ActiveRecord
- by Beer Brother
I have following statement for query articles from some sections
Article.all(:joins => :sections, :conditions => { :sections =>{ :id => [3, 4, 6, 7, 8, 9] }, :id_not_in => @some_ids }, :limit => 4)
Variable @some_ids is array with ids of articles wich must be excluded from result.