Method: ActiveRecord::QueryMethods#with!
- Defined in:
- activerecord/lib/active_record/relation/query_methods.rb
#with!(*args) ⇒ Object
Like #with, but modifies relation in place.
493 494 495 496 |
# File 'activerecord/lib/active_record/relation/query_methods.rb', line 493 def with!(*args) # :nodoc: self.with_values += args self end |