Criteria in Hibernate

We have learned about HQL in previous articles, Now lets talk about Hibernate Criteria Query Language (HCQL) in this article. Let us understand Hibernate Criteria Query Language (HCQL) What is HCQL It’s a Criteria based query language mainly used to fetch the records based on specific search criteria. It supports complete object oriented approach for […]

Share this article on

Criteria with Projection

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 […]

Share this article on
< Previous