/** * Exclude object from result * * @param ChildRoleI18n $roleI18n Object to remove from the list of results * * @return $this|ChildRoleI18nQuery The current query, for fluid interface */ public function prune($roleI18n = null) { if ($roleI18n) { $this->addCond('pruneCond0', $this->getAliasedColName(RoleI18nTableMap::COL_ROLE_ID), $roleI18n->getRoleId(), Criteria::NOT_EQUAL); $this->addCond('pruneCond1', $this->getAliasedColName(RoleI18nTableMap::COL_LOCALE), $roleI18n->getLocale(), Criteria::NOT_EQUAL); $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR); } return $this; }
/** * Adds an object to the instance pool. * * Propel keeps cached copies of objects in an instance pool when they are retrieved * from the database. In some cases you may need to explicitly add objects * to the cache in order to ensure that the same objects are always returned by find*() * and findPk*() calls. * * @param \App\Propel\RoleI18n $obj A \App\Propel\RoleI18n object. * @param string $key (optional) key to use for instance map (for performance boost if key was already calculated externally). */ public static function addInstanceToPool($obj, $key = null) { if (Propel::isInstancePoolingEnabled()) { if (null === $key) { $key = serialize([null === $obj->getRoleId() || is_scalar($obj->getRoleId()) || is_callable([$obj->getRoleId(), '__toString']) ? (string) $obj->getRoleId() : $obj->getRoleId(), null === $obj->getLocale() || is_scalar($obj->getLocale()) || is_callable([$obj->getLocale(), '__toString']) ? (string) $obj->getLocale() : $obj->getLocale()]); } // if key === null self::$instances[$key] = $obj; } }
/** * Filter the query by a related \App\Propel\RoleI18n object * * @param \App\Propel\RoleI18n|ObjectCollection $roleI18n the related object to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return ChildRoleQuery The current query, for fluid interface */ public function filterByRoleI18n($roleI18n, $comparison = null) { if ($roleI18n instanceof \App\Propel\RoleI18n) { return $this->addUsingAlias(RoleTableMap::COL_ROLE_ID, $roleI18n->getRoleId(), $comparison); } elseif ($roleI18n instanceof ObjectCollection) { return $this->useRoleI18nQuery()->filterByPrimaryKeys($roleI18n->getPrimaryKeys())->endUse(); } else { throw new PropelException('filterByRoleI18n() only accepts arguments of type \\App\\Propel\\RoleI18n or Collection'); } }