I am doing Query query = hibernate.createSQLQuery("select abc,def from table");
Is it possible to auto "parse" the result to "POJO" list?
So that I can do this:
List<CustomPOJO> abc = query.list(); //CustomPOJO is pojo not entity , no @Entity tag
Try
like the reference manual suggests.