count(column_name = nil, options = {})
Instance Public methods
Count all records using SQL.
1 2 3 4 5 6 7 8 9 10 11 | class Person < ActiveRecord::Base has_many :pets end person.pets.count # => 3 person.pets # => [ # #<Pet id: 1, name: "Fancy-Fancy", person_id: 1>, # #<Pet id: 2, name: "Spook", person_id: 1>, # #<Pet id: 3, name: "Choo-Choo", person_id: 1> # ] |
Please login to continue.