mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
document the AR::Base#ids method introduced in 9307616
[ci skip]
This commit is contained in:
parent
e8feaff60b
commit
98bfccbdb5
1 changed files with 18 additions and 0 deletions
|
@ -1260,6 +1260,24 @@ with
|
|||
Client.pluck(:id)
|
||||
</ruby>
|
||||
|
||||
h3. +ids+
|
||||
|
||||
+ids+ can be used to pluck all the IDs for the relation using the table's primary key.
|
||||
|
||||
<ruby>
|
||||
Person.ids
|
||||
# SELECT id FROM people
|
||||
</ruby>
|
||||
|
||||
<ruby>
|
||||
class Person < ActiveRecord::Base
|
||||
self.primary_key = "person_id"
|
||||
end
|
||||
|
||||
Person.ids
|
||||
# SELECT person_id FROM people
|
||||
</ruby>
|
||||
|
||||
h3. Existence of Objects
|
||||
|
||||
If you simply want to check for the existence of the object there's a method called +exists?+. This method will query the database using the same query as +find+, but instead of returning an object or collection of objects it will return either +true+ or +false+.
|
||||
|
|
Loading…
Reference in a new issue