本文整理匯總了PHP中Propel\Runtime\Collection\ObjectCollection::getGroupName方法的典型用法代碼示例。如果您正苦於以下問題:PHP ObjectCollection::getGroupName方法的具體用法?PHP ObjectCollection::getGroupName怎麽用?PHP ObjectCollection::getGroupName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Propel\Runtime\Collection\ObjectCollection
的用法示例。
在下文中一共展示了ObjectCollection::getGroupName方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: filterByExpertGroupMembers
/**
* Filter the query by a related \ExpertGroupMembers object
*
* @param \ExpertGroupMembers|ObjectCollection $expertGroupMembers the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return ChildExpertGroupQuery The current query, for fluid interface
*/
public function filterByExpertGroupMembers($expertGroupMembers, $comparison = null)
{
if ($expertGroupMembers instanceof \ExpertGroupMembers) {
return $this->addUsingAlias(ExpertGroupTableMap::COL_GROUP_NAME, $expertGroupMembers->getGroupName(), $comparison);
} elseif ($expertGroupMembers instanceof ObjectCollection) {
return $this->useExpertGroupMembersQuery()->filterByPrimaryKeys($expertGroupMembers->getPrimaryKeys())->endUse();
} else {
throw new PropelException('filterByExpertGroupMembers() only accepts arguments of type \\ExpertGroupMembers or Collection');
}
}
示例2: filterByExpertGroup
/**
* Filter the query by a related \ExpertGroup object
*
* @param \ExpertGroup|ObjectCollection $expertGroup The related object(s) to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return ChildExpertGroupMembersQuery The current query, for fluid interface
*/
public function filterByExpertGroup($expertGroup, $comparison = null)
{
if ($expertGroup instanceof \ExpertGroup) {
return $this->addUsingAlias(ExpertGroupMembersTableMap::COL_GROUP_NAME, $expertGroup->getGroupName(), $comparison);
} elseif ($expertGroup instanceof ObjectCollection) {
if (null === $comparison) {
$comparison = Criteria::IN;
}
return $this->addUsingAlias(ExpertGroupMembersTableMap::COL_GROUP_NAME, $expertGroup->toKeyValue('PrimaryKey', 'GroupName'), $comparison);
} else {
throw new PropelException('filterByExpertGroup() only accepts arguments of type \\ExpertGroup or Collection');
}
}