/**
  * Exclude object from result
  *
  * @param   Localidad $localidad Object to remove from the list of results
  *
  * @return LocalidadQuery The current query, for fluid interface
  */
 public function prune($localidad = null)
 {
     if ($localidad) {
         $this->addUsingAlias(LocalidadPeer::ID, $localidad->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
 /**
  * Filter the query by a related Localidad object
  *
  * @param   Localidad|PropelObjectCollection $localidad The related object(s) to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return   AfiliadoQuery The current query, for fluid interface
  * @throws   PropelException - if the provided filter is invalid.
  */
 public function filterByLocalidad($localidad, $comparison = null)
 {
     if ($localidad instanceof Localidad) {
         return $this->addUsingAlias(AfiliadoPeer::LOCALIDAD_ID, $localidad->getId(), $comparison);
     } elseif ($localidad instanceof PropelObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(AfiliadoPeer::LOCALIDAD_ID, $localidad->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByLocalidad() only accepts arguments of type Localidad or PropelCollection');
     }
 }
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      Localidad $obj A Localidad object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool($obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
Ejemplo n.º 4
0
 /**
  * Declares an association between this object and a Localidad object.
  *
  * @param                  Localidad $v
  * @return                 Afiliado The current object (for fluent API support)
  * @throws PropelException
  */
 public function setLocalidad(Localidad $v = null)
 {
     if ($v === null) {
         $this->setLocalidadId(NULL);
     } else {
         $this->setLocalidadId($v->getId());
     }
     $this->aLocalidad = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Localidad object, it will not be re-added.
     if ($v !== null) {
         $v->addAfiliado($this);
     }
     return $this;
 }