Ejemplo n.º 1
0
 /**
  * Filter the query by a related \iuf\junia\model\Startgroup object
  *
  * @param \iuf\junia\model\Startgroup|ObjectCollection $startgroup the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildPerformanceStatisticQuery The current query, for fluid interface
  */
 public function filterByStartgroupRelatedByPerformanceTotalStatisticId($startgroup, $comparison = null)
 {
     if ($startgroup instanceof \iuf\junia\model\Startgroup) {
         return $this->addUsingAlias(PerformanceStatisticTableMap::COL_ID, $startgroup->getPerformanceTotalStatisticId(), $comparison);
     } elseif ($startgroup instanceof ObjectCollection) {
         return $this->useStartgroupRelatedByPerformanceTotalStatisticIdQuery()->filterByPrimaryKeys($startgroup->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByStartgroupRelatedByPerformanceTotalStatisticId() only accepts arguments of type \\iuf\\junia\\model\\Startgroup or Collection');
     }
 }