Method: ActiveRecord::QueryMethods#with_recursive!
- Defined in:
- activerecord/lib/active_record/relation/query_methods.rb
#with_recursive!(*args) ⇒ Object
Like #with_recursive but modifies the relation in place.
524 525 526 527 528 529 |
# File 'activerecord/lib/active_record/relation/query_methods.rb', line 524 def with_recursive!(*args) # :nodoc: args = process_with_args(args) self.with_values |= args @with_is_recursive = true self end |