When I use find_by_name method I get LIMIT 1 result.
SELECT “users”.* FROM “users” WHERE “users”.“age” = 25 LIMIT 1
But the “age” column is not unique in my table and its value may repeat.
So I expect that an array of records where “age” is 25 will be returned.
But AR limits the query by 1.
How to avoid it? Or is it the default behavior of “find_by_” methods to
limit queries by 1?
But it is not mentioned in Rails Guides then
You should use ‘where’ if you are using rails 3. the find_by method is
not
suggested now. Hence your problem is easy to be resolved by
"User.where(:age=>25)
You should use ‘where’ if you are using rails 3. the find_by method is
not suggested now. Hence your problem is easy to be resolved by
"User.where(:age=>25)
Oh, yes, you’re right. From Edge Guides:
Dynamic finders have been deprecated in Rails 4.0 and will be
removed in Rails 4.1.
I thought the other way around, that dynamic finders are better choice.
But the thing is that .find_by may return exactly a model object, but
.where returns ActiveRecord::Relation in all cases.