/**
  * Exclude object from result
  *
  * @param   ChildApplicationRequest $applicationRequest Object to remove from the list of results
  *
  * @return $this|ChildApplicationRequestQuery The current query, for fluid interface
  */
 public function prune($applicationRequest = null)
 {
     if ($applicationRequest) {
         $this->addUsingAlias(ApplicationRequestTableMap::COL_ID, $applicationRequest->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }