Module: Sequel::Plugins::EagerEach::DatasetMethods
- Defined in:
- lib/sequel/plugins/eager_each.rb
Instance Method Summary collapse
-
#eager ⇒ Object
Make sure calling each on this dataset will eagerly load the dataset.
-
#eager_graph ⇒ Object
Make sure calling each on this dataset will eagerly load the dataset.
Instance Method Details
#eager ⇒ Object
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_graph ⇒ Object
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 |