method
construct_join_dependency
v5.1.7 -
Show latest stable
- Class:
ActiveRecord::FinderMethods
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