/**
  * Remove dgmEffects of this object
  * through the dgmtypeeffects cross reference table.
  * 
  * @param ChildDgmEffects $dgmEffects
  * @return ChildInvTypes The current object (for fluent API support)
  */
 public function removeDgmEffects(ChildDgmEffects $dgmEffects)
 {
     if ($this->getDgmEffectss()->contains($dgmEffects)) {
         $dgmTypeEffects = new ChildDgmTypeEffects();
         $dgmTypeEffects->setDgmEffects($dgmEffects);
         if ($dgmEffects->isInvTypessLoaded()) {
             //remove the back reference if available
             $dgmEffects->getInvTypess()->removeObject($this);
         }
         $dgmTypeEffects->setInvTypes($this);
         $this->removeDgmTypeEffects(clone $dgmTypeEffects);
         $dgmTypeEffects->clear();
         $this->collDgmEffectss->remove($this->collDgmEffectss->search($dgmEffects));
         if (null === $this->dgmEffectssScheduledForDeletion) {
             $this->dgmEffectssScheduledForDeletion = clone $this->collDgmEffectss;
             $this->dgmEffectssScheduledForDeletion->clear();
         }
         $this->dgmEffectssScheduledForDeletion->push($dgmEffects);
     }
     return $this;
 }
 /**
  * Filter the query by a related \EVE\DgmTypeEffects object
  *
  * @param \EVE\DgmTypeEffects|ObjectCollection $dgmTypeEffects the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildDgmEffectsQuery The current query, for fluid interface
  */
 public function filterByDgmTypeEffects($dgmTypeEffects, $comparison = null)
 {
     if ($dgmTypeEffects instanceof \EVE\DgmTypeEffects) {
         return $this->addUsingAlias(DgmEffectsTableMap::COL_EFFECTID, $dgmTypeEffects->getEffectid(), $comparison);
     } elseif ($dgmTypeEffects instanceof ObjectCollection) {
         return $this->useDgmTypeEffectsQuery()->filterByPrimaryKeys($dgmTypeEffects->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByDgmTypeEffects() only accepts arguments of type \\EVE\\DgmTypeEffects or Collection');
     }
 }
 /**
  * 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 you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by find*()
  * and findPk*() calls.
  *
  * @param \EVE\DgmTypeEffects $obj A \EVE\DgmTypeEffects 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 (null === $key) {
             $key = serialize(array((string) $obj->getTypeid(), (string) $obj->getEffectid()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
 /**
  * Exclude object from result
  *
  * @param   ChildDgmTypeEffects $dgmTypeEffects Object to remove from the list of results
  *
  * @return $this|ChildDgmTypeEffectsQuery The current query, for fluid interface
  */
 public function prune($dgmTypeEffects = null)
 {
     if ($dgmTypeEffects) {
         $this->addCond('pruneCond0', $this->getAliasedColName(DgmTypeEffectsTableMap::COL_TYPEID), $dgmTypeEffects->getTypeid(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(DgmTypeEffectsTableMap::COL_EFFECTID), $dgmTypeEffects->getEffectid(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }