This might be a silly question. It's certainly pedantic.
Is there any difference between MyModel.where(...)
and MyModel.where(...).all
?
This question was prompted by a deprecation warning I got a few minutes ago:
DEPRECATION WARNING: This dynamic method is deprecated.
Please use e.g. Post.where(...).all instead.
Is that all
really necessary?