Method: ActiveRecord::QueryMethods#rewhere
- Defined in:
- activerecord/lib/active_record/relation/query_methods.rb
#rewhere(conditions) ⇒ Object
Allows you to change a previously set where condition for a given attribute, instead of appending to that condition.
Post.where(trashed: true).where(trashed: false)
# WHERE `trashed` = 1 AND `trashed` = 0
Post.where(trashed: true).rewhere(trashed: false)
# WHERE `trashed` = 0
Post.where(active: true).where(trashed: true).rewhere(trashed: false)
# WHERE `active` = 1 AND `trashed` = 0
This is short-hand for unscope(where: conditions.keys).where(conditions). Note that unlike reorder, we’re only unscoping the named conditions – not the entire where statement.
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 |
# File 'activerecord/lib/active_record/relation/query_methods.rb', line 1061 def rewhere(conditions) return unscope(:where) if conditions.nil? scope = spawn where_clause = scope.build_where_clause(conditions) scope.unscope!(where: where_clause.extract_attributes) scope.where_clause += where_clause scope end |