“PHP Doctrina Findby Mayor que” Código de respuesta

PHP Doctrina Findby Mayor que

/**
 * fetches Products that are more expansive than the given price
 * 
 * @param int $price
 * @return array
 */
public function findProductsExpensiveThan($price)
{
  $em = $this->getEntityManager();
  $qb = $em->createQueryBuilder();

  $q  = $qb->select(array('p'))
           ->from('YourProductBundle:Product', 'p')
           ->where(
             $qb->expr()->gt('p.price', $price)
           )
           ->orderBy('p.price', 'DESC')
           ->getQuery();

  return $q->getResult();
}
Stormy Swiftlet

PHP Doctrina Findby Mayor que

$q = $this->createQueryBuilder('p')
          ->where('p.prize > :purchasePrize')
          ->setParameter('purchasePrize', 200)
          ->getQuery();

$q->getResult();
Stormy Swiftlet

Respuestas similares a “PHP Doctrina Findby Mayor que”

Preguntas similares a “PHP Doctrina Findby Mayor que”

Más respuestas relacionadas con “PHP Doctrina Findby Mayor que” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código