instance method
relation
Ruby on Rails 5.1.7
Since v5.1.7 Private — implementation detail, not part of the public APISignature
relation()
No documentation comment.
Source
# File activerecord/lib/active_record/core.rb, line 307
def relation
relation = Relation.create(self, arel_table, predicate_builder)
if finder_needs_type_condition? && !ignore_default_scope?
relation.where(type_condition).create_with(inheritance_column.to_s => sti_name)
else
relation
end
end
Defined in activerecord/lib/active_record/core.rb line 307
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Core::ClassMethods