module Sequel::Plugins::EagerEach::DatasetMethods

Public Instance Methods

eager(*) click to toggle source

Make sure calling each on this dataset will eagerly load the dataset.

# File lib/sequel/plugins/eager_each.rb, line 48
def eager(*)
  super.extend(EagerDatasetMethods)
end
eager_graph(*) click to toggle source

Make sure calling each on this dataset will eagerly load the dataset.

# File lib/sequel/plugins/eager_each.rb, line 53
def eager_graph(*)
  super.extend(EagerDatasetMethods)
end