Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/06/2015, 15:51
JHONATHAN11
 
Fecha de Ingreso: mayo-2015
Mensajes: 50
Antigüedad: 9 años, 5 meses
Puntos: 0
Respuesta: Usar la clausula distinct en Doctrine

Solucionado
Código PHP:
 $em $this->getDoctrine()->getManager();
        
$query $em->createQuery("
            SELECT DISTINCT o, d FROM webmodelBundle:TePrecio o JOIN o.destino d WHERE o.vehiculo = :vehiculo AND o.origen = :origen"
)
            ->
setParameter('origen'$idOrigen)
            ->
setParameter('vehiculo'$idVehiculo);

        
$resultado $query->getArrayResult();