instance method
select_all_rows
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v2.3.18 PrivateAvailable in: v2.2.3 v2.3.18
Signature
select_all_rows(options, join_dependency)
No documentation comment.
Parameters
-
optionsreq -
join_dependencyreq
Source
# File activerecord/lib/active_record/associations.rb, line 1621
def select_all_rows(options, join_dependency)
connection.select_all(
construct_finder_sql_with_included_associations(options, join_dependency),
"#{name} Load Including Associations"
)
end
Defined in activerecord/lib/active_record/associations.rb line 1621
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Associations::ClassMethods