method

where

where(expr)
public

No documentation available.

# File activerecord/lib/arel/select_manager.rb, line 184
    def where(expr)
      if Arel::TreeManager === expr
        expr = expr.ast
      end
      @ctx.wheres << expr
      self
    end