コード例 #1
0
 /**
  * Filter the query by a related \ECP\GroupAccess object
  *
  * @param \ECP\GroupAccess|ObjectCollection $groupAccess the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildEntityTypeQuery The current query, for fluid interface
  */
 public function filterByGroupAccess($groupAccess, $comparison = null)
 {
     if ($groupAccess instanceof \ECP\GroupAccess) {
         return $this->addUsingAlias(EntityTypeTableMap::COL_ID, $groupAccess->getEntitytypeid(), $comparison);
     } elseif ($groupAccess instanceof ObjectCollection) {
         return $this->useGroupAccessQuery()->filterByPrimaryKeys($groupAccess->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByGroupAccess() only accepts arguments of type \\ECP\\GroupAccess or Collection');
     }
 }