Skip to content
Snippets Groups Projects
Commit 5c9f0b7f authored by petrighlautaro's avatar petrighlautaro
Browse files

update join

parent 5fa85066
No related branches found
No related tags found
1 merge request!30update join
Pipeline #6946 passed
......@@ -178,9 +178,10 @@ public class AlmacenamientoDAO implements IAlmacenamiento {
"WHERE b.tipo = 2 " +
"GROUP BY b.nombre, b.tipo";
return entityManager.createQuery(jpql, BienFront.class).getResultList();
List<Object[]> retrieved = entityManager.createQuery(jpql, Object[].class).getResultList();
System.out.print(retrieved.toString());
return new ArrayList<BienFront>();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment