Exemplo n.º 1
0
 /**
  * Filter the query by a related \DivisionRef object
  *
  * @param \DivisionRef|ObjectCollection $divisionRef The related object(s) to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @throws \Propel\Runtime\Exception\PropelException
  *
  * @return ChildTeamsQuery The current query, for fluid interface
  */
 public function filterByDivisionRef($divisionRef, $comparison = null)
 {
     if ($divisionRef instanceof \DivisionRef) {
         return $this->addUsingAlias(TeamsTableMap::COL_DIVISION, $divisionRef->getDivision(), $comparison);
     } elseif ($divisionRef instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(TeamsTableMap::COL_DIVISION, $divisionRef->toKeyValue('PrimaryKey', 'Division'), $comparison);
     } else {
         throw new PropelException('filterByDivisionRef() only accepts arguments of type \\DivisionRef or Collection');
     }
 }