Exemplo n.º 1
0
 /**
  * Filter the query by a related Proveedorcliente object
  *
  * @param   Proveedorcliente|PropelObjectCollection $proveedorcliente  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return                 ClienteQuery The current query, for fluid interface
  * @throws PropelException - if the provided filter is invalid.
  */
 public function filterByProveedorcliente($proveedorcliente, $comparison = null)
 {
     if ($proveedorcliente instanceof Proveedorcliente) {
         return $this->addUsingAlias(ClientePeer::IDCLIENTE, $proveedorcliente->getIdcliente(), $comparison);
     } elseif ($proveedorcliente instanceof PropelObjectCollection) {
         return $this->useProveedorclienteQuery()->filterByPrimaryKeys($proveedorcliente->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByProveedorcliente() only accepts arguments of type Proveedorcliente or PropelCollection');
     }
 }