method
count_with_associations
count_with_associations(options = {})
private
Hide source
# File activerecord/lib/active_record/associations.rb, line 969 def count_with_associations(options = {}) catch :invalid_query do join_dependency = JoinDependency.new(self, merge_includes(scope(:find, :include), options[:include]), options[:joins]) return count_by_sql(construct_counter_sql_with_included_associations(options, join_dependency)) end 0 end

