Proxy object used by Dataset#query.
Replace the query's dataset with dataset returned by the method call.
# File lib/sequel/extensions/query.rb, line 64 def method_missing(method, *args, &block) @dataset = @dataset.send(method, *args, &block) raise(Sequel::Error, "method #{method.inspect} did not return a dataset") unless @dataset.is_a?(Dataset) self end
Generated with the Darkfish Rdoc Generator 2.