Esempio n. 1
0
 /**
  * Exclude object from result
  *
  * @param   ChildSocialView $socialView Object to remove from the list of results
  *
  * @return $this|ChildSocialViewQuery The current query, for fluid interface
  */
 public function prune($socialView = null)
 {
     if ($socialView) {
         $this->addUsingAlias(SocialViewTableMap::COL_SOCIAL_VIEW_ID, $socialView->getSocialViewId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }