Flowdock
method

find_with_associations

Importance_0
find_with_associations(options = {}) 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.rb, line 963
        def find_with_associations(options = {})
          join_dependency = JoinDependency.new(self, merge_includes(scope(:find, :include), options[:include]), options[:joins])
          rows = select_all_rows(options, join_dependency)
          return join_dependency.instantiate(rows)
        end
Register or log in to add new notes.