/**
  * Exclude object from result
  *
  * @param   Childотображаемыетипытехникимтр $�тображаемыетипытехникимтр Object to remove from the list of results
  *
  * @return $this|ChildотображаемыетипытехникимтрQuery The current query, for fluid interface
  */
 public function prune($�тображаемыетипытехникимтр = null)
 {
     if ($�тображаемыетипытехникимтр) {
         $this->addUsingAlias(отображаемыетипытехникимтрTableMap::COL_ID, $�тображаемыетипытехникимтр->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
 /**
  * Declares an association between this object and a Childотображаемыетипытехникимтр object.
  *
  * @param  Childотображаемыетипытехникимтр $v
  * @return $this|\типытехникимтр The current object (for fluent API support)
  * @throws PropelException
  */
 public function setотображаемыетипытехникимтр(Childотображаемыетипытехникимтр $v = null)
 {
     if ($v === null) {
         $this->setотображаемыйтиптехники(NULL);
     } else {
         $this->setотображаемыйтиптехники($v->getId());
     }
     $this->aотображаемыетипытехникимтр = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Childотображаемыетипытехникимтр object, it will not be re-added.
     if ($v !== null) {
         $v->addтипытехникимтр($this);
     }
     return $this;
 }
 /**
  * Filter the query by a related \отображаемыетипытехникимтр object
  *
  * @param \отображаемыетипытехникимтр|ObjectCollection $�тображаемыетипытехникимтр The related object(s) to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @throws \Propel\Runtime\Exception\PropelException
  *
  * @return ChildтипытехникимтрQuery The current query, for fluid interface
  */
 public function filterByотображаемыетипытехникимтр($�тображаемыетипытехникимтр, $comparison = null)
 {
     if ($�тображаемыетипытехникимтр instanceof \отображаемыетипытехникимтр) {
         return $this->addUsingAlias(типытехникимтрTableMap::COL_ОТОБРАЖАЕМЫЙ_ТИП_ТЕХНИКИ, $�тображаемыетипытехникимтр->getId(), $comparison);
     } elseif ($�тображаемыетипытехникимтр instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(типытехникимтрTableMap::COL_ОТОБРАЖАЕМЫЙ_ТИП_ТЕХНИКИ, $�тображаемыетипытехникимтр->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByотображаемыетипытехникимтр() only accepts arguments of type \\отображаемыетипытехникимтр or Collection');
     }
 }