/** * Filter the query by a related AbsenceEleveNotification object * * @param AbsenceEleveNotification $absenceEleveNotification the related object to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return ResponsableEleveAdresseQuery The current query, for fluid interface */ public function filterByAbsenceEleveNotification($absenceEleveNotification, $comparison = null) { if ($absenceEleveNotification instanceof AbsenceEleveNotification) { return $this ->addUsingAlias(ResponsableEleveAdressePeer::ADR_ID, $absenceEleveNotification->getAdrId(), $comparison); } elseif ($absenceEleveNotification instanceof PropelCollection) { return $this ->useAbsenceEleveNotificationQuery() ->filterByPrimaryKeys($absenceEleveNotification->getPrimaryKeys()) ->endUse(); } else { throw new PropelException('filterByAbsenceEleveNotification() only accepts arguments of type AbsenceEleveNotification or PropelCollection'); } }