I need to list the 10 best selling products in a table using Hibernate.
The item_venda table has the following columns:
quantity
product_id
community_value
value_sub_Total
I have a method with return type List<String> , when doing a query I can return a value or nothing:
public class Repositorio {
@PersistenceContext
private EntityManager em;
public List<String> listaEscritor...