module Wharel::QueryMethods::WhereChain

Public Instance Methods

not(*args, &block) click to toggle source
Calls superclass method
# File lib/wharel.rb, line 21
def not(*args, &block)
  block_given? ? super(VirtualRow.build_query(@scope, &block)) : super
end