method
relation
v6.0.0 -
Show latest stable
- Class:
ActiveRecord::Core::ClassMethods
relation()private
No documentation available.
# File activerecord/lib/active_record/core.rb, line 295
def relation
relation = Relation.create(self)
if finder_needs_type_condition? && !ignore_default_scope?
relation.where!(type_condition)
relation.create_with!(inheritance_column.to_s => sti_name)
else
relation
end
end