本文整理汇总了PHP中Propel\Runtime\Collection\ObjectCollection::getподрядчик方法的典型用法代码示例。如果您正苦于以下问题:PHP ObjectCollection::getподрядчик方法的具体用法?PHP ObjectCollection::getподрядчик怎么用?PHP ObjectCollection::getподрядчик使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Propel\Runtime\Collection\ObjectCollection
的用法示例。
在下文中一共展示了ObjectCollection::getподрядчик方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elseif
/**
* Filter the query by a related \Предписания object
*
* @param \Предписания|ObjectCollection $�редписания the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return ChildПодрядчикиПредписанияQuery The current query, for fluid interface
*/
public function filterByПредписания($�редписания, $comparison = null)
{
if ($�редписания instanceof \Предписания) {
return $this->addUsingAlias(ПодрядчикиПредписанияTableMap::COL_ID, $�редписания->getподрядчик(), $comparison);
} elseif ($�редписания instanceof ObjectCollection) {
return $this->useПредписанияQuery()->filterByPrimaryKeys($�редписания->getPrimaryKeys())->endUse();
} else {
throw new PropelException('filterByПредписания() only accepts arguments of type \\Предписания or Collection');
}
}
开发者ID:Polymedia,项目名称:BI-Platform-v3,代码行数:18,代码来源:ПодрядчикиПредписанияQuery.php
示例2: elseif
/**
* Filter the query by a related \мтр object
*
* @param \мтр|ObjectCollection $�тр the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return ChildподрядчикимтрQuery The current query, for fluid interface
*/
public function filterByмтр($�тр, $comparison = null)
{
if ($�тр instanceof \мтр) {
return $this->addUsingAlias(подрядчикимтрTableMap::COL_ID, $�тр->getподрядчик(), $comparison);
} elseif ($�тр instanceof ObjectCollection) {
return $this->useмтрQuery()->filterByPrimaryKeys($�тр->getPrimaryKeys())->endUse();
} else {
throw new PropelException('filterByмтр() only accepts arguments of type \\мтр or Collection');
}
}