method
count
Ruby on Rails latest stable (v2.3.4)
-
1 note -
Class: ActiveRecord::Base
- 1.0.0 (0)
- v1.1.0
- v1.1.1
- v1.1.2
- v1.1.3
- v1.1.4
- v1.1.5
- v1.1.6
- v1.2.0
- v1.2.1
- v1.2.2
- v1.2.3
- v1.2.4
- v1.2.5
- v1.2.6
- v2.0.0
- v2.0.1
- v2.0.2
- v2.0.3
- v2.1.0
- v2.2.1
- v2.3.2
- v2.3.4
- What's this?
count(conditions = nil, joins = nil)
public
Returns the number of records that meet the conditions. Zero is returned if no records match. Example:
Product.count "sales > 1"
Register or
log in
to add new notes.
misaka -
August 28, 2008
3 thanks
Moved to ActiveRecord::Calculations::ClassMethods
It appears that this method has simply been moved to the module ActiveRecord::Calculations::ClassMethods. You can still use the example listed in the docs here, it will simply call the method ActiveRecord::Calculations::ClassMethods#count.

