Module: Sequel::Plugins::EagerEach::DatasetMethods

Defined in:
lib/sequel/plugins/eager_each.rb

Instance Method Summary collapse

Instance Method Details

#eagerObject

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



48
49
50
# File 'lib/sequel/plugins/eager_each.rb', line 48

def eager(*)
  super.extend(EagerDatasetMethods)
end

#eager_graphObject

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



53
54
55
# File 'lib/sequel/plugins/eager_each.rb', line 53

def eager_graph(*)
  super.extend(EagerDatasetMethods)
end