Exemplo n.º 1
0
 /**
  * Declares an association between this object and a ChildRating object.
  *
  * @param  ChildRating $v
  * @return $this|\UserReview The current object (for fluent API support)
  * @throws PropelException
  */
 public function setRating(ChildRating $v = null)
 {
     if ($v === null) {
         $this->setRatingId(NULL);
     } else {
         $this->setRatingId($v->getId());
     }
     $this->aRating = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildRating object, it will not be re-added.
     if ($v !== null) {
         $v->addUserReview($this);
     }
     return $this;
 }
Exemplo n.º 2
0
 /**
  * Exclude object from result
  *
  * @param   ChildRating $rating Object to remove from the list of results
  *
  * @return $this|ChildRatingQuery The current query, for fluid interface
  */
 public function prune($rating = null)
 {
     if ($rating) {
         $this->addUsingAlias(RatingTableMap::COL_ID, $rating->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
Exemplo n.º 3
0
 /**
  * Filter the query by a related \Rating object
  *
  * @param \Rating|ObjectCollection $rating 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 ChildUserReviewQuery The current query, for fluid interface
  */
 public function filterByRating($rating, $comparison = null)
 {
     if ($rating instanceof \Rating) {
         return $this->addUsingAlias(UserReviewTableMap::COL_RATING_ID, $rating->getId(), $comparison);
     } elseif ($rating instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(UserReviewTableMap::COL_RATING_ID, $rating->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByRating() only accepts arguments of type \\Rating or Collection');
     }
 }