Criteria with Projection
- 1st Mar 2017
- 0
- 10892
- criteria with projection in hibernate example on criteria with projections How to perform projection with criteria in hibernate Why we need Projections in hibernate
In Hibernate-Criteria article , we have learned about Criteria where we use to load entire object based on certain restrictions. Projections will become handy when we want to load the partial object. Partial object means only few attributes will be loaded rather than all the attributes. In some cases, it is unnecessary to load all […]