/**
  * Remove dgmAttributeTypes of this object
  * through the dgmtypeattributes cross reference table.
  * 
  * @param ChildDgmAttributeTypes $dgmAttributeTypes
  * @return ChildInvTypes The current object (for fluent API support)
  */
 public function removeDgmAttributeTypes(ChildDgmAttributeTypes $dgmAttributeTypes)
 {
     if ($this->getDgmAttributeTypess()->contains($dgmAttributeTypes)) {
         $dgmTypeAttributes = new ChildDgmTypeAttributes();
         $dgmTypeAttributes->setDgmAttributeTypes($dgmAttributeTypes);
         if ($dgmAttributeTypes->isInvTypessLoaded()) {
             //remove the back reference if available
             $dgmAttributeTypes->getInvTypess()->removeObject($this);
         }
         $dgmTypeAttributes->setInvTypes($this);
         $this->removeDgmTypeAttributes(clone $dgmTypeAttributes);
         $dgmTypeAttributes->clear();
         $this->collDgmAttributeTypess->remove($this->collDgmAttributeTypess->search($dgmAttributeTypes));
         if (null === $this->dgmAttributeTypessScheduledForDeletion) {
             $this->dgmAttributeTypessScheduledForDeletion = clone $this->collDgmAttributeTypess;
             $this->dgmAttributeTypessScheduledForDeletion->clear();
         }
         $this->dgmAttributeTypessScheduledForDeletion->push($dgmAttributeTypes);
     }
     return $this;
 }
 /**
  * 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\DgmTypeAttributes $obj A \EVE\DgmTypeAttributes 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->getAttributeid()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
 /**
  * Exclude object from result
  *
  * @param   ChildDgmTypeAttributes $dgmTypeAttributes Object to remove from the list of results
  *
  * @return $this|ChildDgmTypeAttributesQuery The current query, for fluid interface
  */
 public function prune($dgmTypeAttributes = null)
 {
     if ($dgmTypeAttributes) {
         $this->addCond('pruneCond0', $this->getAliasedColName(DgmTypeAttributesTableMap::COL_TYPEID), $dgmTypeAttributes->getTypeid(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(DgmTypeAttributesTableMap::COL_ATTRIBUTEID), $dgmTypeAttributes->getAttributeid(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
 /**
  * Filter the query by a related \EVE\DgmTypeAttributes object
  *
  * @param \EVE\DgmTypeAttributes|ObjectCollection $dgmTypeAttributes the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildDgmAttributeTypesQuery The current query, for fluid interface
  */
 public function filterByDgmTypeAttributes($dgmTypeAttributes, $comparison = null)
 {
     if ($dgmTypeAttributes instanceof \EVE\DgmTypeAttributes) {
         return $this->addUsingAlias(DgmAttributeTypesTableMap::COL_ATTRIBUTEID, $dgmTypeAttributes->getAttributeid(), $comparison);
     } elseif ($dgmTypeAttributes instanceof ObjectCollection) {
         return $this->useDgmTypeAttributesQuery()->filterByPrimaryKeys($dgmTypeAttributes->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByDgmTypeAttributes() only accepts arguments of type \\EVE\\DgmTypeAttributes or Collection');
     }
 }