method

skip_strict_loading

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: Association
skip_strict_loading(&block) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/associations/association.rb, line 252
        def skip_strict_loading(&block)
          skip_strict_loading_was = @skip_strict_loading
          @skip_strict_loading = true
          yield
        ensure
          @skip_strict_loading = skip_strict_loading_was
        end
Register or log in to add new notes.