/** * Returns the number of related Advice objects. * * @param Criteria $criteria * @param boolean $distinct * @param PropelPDO $con * @return int Count of related Advice objects. * @throws PropelException */ public function countAdvicesRelatedByCategoryUpcategoryId(Criteria $criteria = null, $distinct = false, PropelPDO $con = null) { if ($criteria === null) { $criteria = new Criteria(CategoriesPeer::DATABASE_NAME); } else { $criteria = clone $criteria; } if ($distinct) { $criteria->setDistinct(); } $count = null; if ($this->collAdvicesRelatedByCategoryUpcategoryId === null) { if ($this->isNew()) { $count = 0; } else { $criteria->add(AdvicePeer::CATEGORY_UPCATEGORY_ID, $this->categoryup_id); $count = AdvicePeer::doCount($criteria, false, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return count of the collection. $criteria->add(AdvicePeer::CATEGORY_UPCATEGORY_ID, $this->categoryup_id); if (!isset($this->lastAdviceRelatedByCategoryUpcategoryIdCriteria) || !$this->lastAdviceRelatedByCategoryUpcategoryIdCriteria->equals($criteria)) { $count = AdvicePeer::doCount($criteria, false, $con); } else { $count = count($this->collAdvicesRelatedByCategoryUpcategoryId); } } else { $count = count($this->collAdvicesRelatedByCategoryUpcategoryId); } } return $count; }