Estoy tratando de obtener un informe usando Criteria y ProjectionList, y estoy bastante nuevo usando esto a través de Hibernate. Así que tienen este modelo:Grupo por mes con criterios en Hibernate
private Long _userId;
private Category _category;
private Long _companyId;
private Double _amount;
private Date _date;
Y la construcción de la consulta utilizando la siguiente:
public List sumPaymentsByUserCategoryPeriod(Category category, Long userId,Integer period){
GregorianCalendar from = new GregorianCalendar();
from.add(Calendar.MONTH, -period);
List<CategoryAmount> resultDTO= new ArrayList<CategoryAmount>();
Criteria criteria = getSession().createCriteria(Payment.class);
criteria.add(Restrictions.eq("_category", category));
criteria.add(Restrictions.eq("_userId",userId));
criteria.add(Restrictions.between("_date", from.getTime(), new Date()));
ProjectionList projectionList = Projections.projectionList();
projectionList.add(Projections.sum("_amount"));
projectionList.add(Projections.groupProperty("_date"));
criteria.setProjection(projectionList);
return criteria.list();
}
Básicamente este método reciben una categoría y un ID de usuario para filtrar los pagos de registros y un punto, que le indicará cuántos meses a partir de ahora quiero resumir. ¿Cómo puedo obtener el resultado de la suma agrupada por meses?
Cualquier ayuda o consejo Lo agradeceré!
Cómo manejar diferentes DB? como MSSQL y Oracle? como Oracle use to_char y mssql use weeknum ... – zolibra