Search Interview Questions | More than 3000 questions in repository. There are more than 900 unanswered questions. Click here and help us by providing the answer. Have a video suggestion. Click Correct / Improve and please let us know. |
|
| ||||
Interview Questions and Answers | ||||
| ||||
Ans. Criteria is a simplified API for retrieving entities by composing Criterion objects. For example - session.createCriteria(Employee.class).add( Restrictions.like("name", "A%") ).list(); will return all employee objects having name starting with A. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  hibernate   hibernate criteria Asked in 7 Companies Basic   Frequent | ||||
Try 1 Question(s) Test | ||||
Related Questions | ||||
How do we specify the criteria if it involves mapping between two entities or join between tables ? | ||||
Name few Restriction Methods ? | ||||
In Hibernate, While defining Criteria, Have you ever faced any problem while adding restrictions with user defined types or Enums ? | ||||
What is your choice while writing queries within Hibernate - criteria or HQL ? | ||||