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