Beispiel #1
0
 /**
  * Filter the query by a related Expedientegasto object
  *
  * @param   Expedientegasto|PropelObjectCollection $expedientegasto  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return                 EmpleadoQuery The current query, for fluid interface
  * @throws PropelException - if the provided filter is invalid.
  */
 public function filterByExpedientegasto($expedientegasto, $comparison = null)
 {
     if ($expedientegasto instanceof Expedientegasto) {
         return $this->addUsingAlias(EmpleadoPeer::IDEMPLEADO, $expedientegasto->getIdempleado(), $comparison);
     } elseif ($expedientegasto instanceof PropelObjectCollection) {
         return $this->useExpedientegastoQuery()->filterByPrimaryKeys($expedientegasto->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByExpedientegasto() only accepts arguments of type Expedientegasto or PropelCollection');
     }
 }