Flowdock
method

find_with_associations

Importance_0
v3.1.0 - Show latest stable - 0 notes - Class: ActiveRecord::FinderMethods
find_with_associations() protected

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/finder_methods.rb, line 202
    def find_with_associations
      join_dependency = construct_join_dependency_for_association_find
      relation = construct_relation_for_association_find(join_dependency)
      rows = connection.select_all(relation, 'SQL', relation.bind_values)
      join_dependency.instantiate(rows)
    rescue ThrowResult
      []
    end
Register or log in to add new notes.