/**
  * 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');
     }
 }