/**
  * Filter the query by a related Ciudad object
  *
  * @param     Ciudad|PropelCollection $ciudad The related object(s) to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    ClienteQuery The current query, for fluid interface
  */
 public function filterByCiudadRelatedByIdCiudad($ciudad, $comparison = null)
 {
     if ($ciudad instanceof Ciudad) {
         return $this->addUsingAlias(ClientePeer::ID_CIUDAD, $ciudad->getIdciudad(), $comparison);
     } elseif ($ciudad instanceof PropelCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(ClientePeer::ID_CIUDAD, $ciudad->toKeyValue('PrimaryKey', 'Idciudad'), $comparison);
     } else {
         throw new PropelException('filterByCiudadRelatedByIdCiudad() only accepts arguments of type Ciudad or PropelCollection');
     }
 }
 /**
  * Declares an association between this object and a Ciudad object.
  *
  * @param      Ciudad $v
  * @return     Cliente The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setCiudadRelatedByIdCiudad(Ciudad $v = null)
 {
     if ($v === null) {
         $this->setIdCiudad(NULL);
     } else {
         $this->setIdCiudad($v->getIdciudad());
     }
     $this->aCiudadRelatedByIdCiudad = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Ciudad object, it will not be re-added.
     if ($v !== null) {
         $v->addClienteRelatedByIdCiudad($this);
     }
     return $this;
 }
 /**
  * Exclude object from result
  *
  * @param     Ciudad $ciudad Object to remove from the list of results
  *
  * @return    CiudadQuery The current query, for fluid interface
  */
 public function prune($ciudad = null)
 {
     if ($ciudad) {
         $this->addUsingAlias(CiudadPeer::IDCIUDAD, $ciudad->getIdciudad(), Criteria::NOT_EQUAL);
     }
     return $this;
 }