method

build_with_join_node

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: ActiveRecord::QueryMethods
build_with_join_node(name, kind = Arel::Nodes::InnerJoin) 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/relation/query_methods.rb, line 1938
      def build_with_join_node(name, kind = Arel::Nodes::InnerJoin)
        with_table = Arel::Table.new(name)

        table.join(with_table, kind).on(
          with_table[klass.model_name.to_s.foreign_key].eq(table[klass.primary_key])
        ).join_sources.first
      end
Register or log in to add new notes.