method

construct_join_dependency

construct_join_dependency(joins = [], eager_loading: true)
private

No documentation available.

# File activerecord/lib/active_record/relation/finder_methods.rb, line 390
      def construct_join_dependency(joins = [], eager_loading: true)
        including = eager_load_values + includes_values
        ActiveRecord::Associations::JoinDependency.new(@klass, including, joins, eager_loading: eager_loading)
      end