Exemplo n.º 1
0
 /**
  * Filter the query by a related Banco object
  *
  * @param   Banco|PropelObjectCollection $banco The related object(s) to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return                 BancotransaccionQuery The current query, for fluid interface
  * @throws PropelException - if the provided filter is invalid.
  */
 public function filterByBanco($banco, $comparison = null)
 {
     if ($banco instanceof Banco) {
         return $this->addUsingAlias(BancotransaccionPeer::IDBANCO, $banco->getIdbanco(), $comparison);
     } elseif ($banco instanceof PropelObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(BancotransaccionPeer::IDBANCO, $banco->toKeyValue('PrimaryKey', 'Idbanco'), $comparison);
     } else {
         throw new PropelException('filterByBanco() only accepts arguments of type Banco or PropelCollection');
     }
 }