module Sequel::Plugins::ForbidLazyLoad::InstanceMethods

  1. lib/sequel/plugins/forbid_lazy_load.rb

Methods

Public Instance

  1. allow_lazy_load
  2. forbid_lazy_load

Public Instance methods

allow_lazy_load()

Set this model instance to allow lazy loading of associations.

[show source]
    # File lib/sequel/plugins/forbid_lazy_load.rb
147 def allow_lazy_load
148   @forbid_lazy_load = false
149   self
150 end
forbid_lazy_load()

Set this model instance to not allow lazy loading of associations.

[show source]
    # File lib/sequel/plugins/forbid_lazy_load.rb
153 def forbid_lazy_load
154   @forbid_lazy_load = true
155   self
156 end