Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/09/2015, 11:25
Avatar de hhs
hhs
Colaborador
 
Fecha de Ingreso: junio-2013
Ubicación: México
Mensajes: 2.995
Antigüedad: 11 años, 5 meses
Puntos: 379
Respuesta: Doctrine Criteria en

Ya probaste algo así ?
Código PHP:
Ver original
  1. public function getProductoById($IdProducto)
  2. {
  3.     $criteria = Criteria::create();
  4.     $criteria->where(Criteria::expr()->eq('id', $IdProducto));
  5.        
  6.     return $this->matching($criteria);
  7. }
Aun que ya tienes un método para obtener por id
__________________
Saludos
About me
Laraveles
A class should have only one reason to change.