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. |
|
| ||||
Hibernate - Interview Questions and Answers for 'Hibernate table mapping' - 1 question(s) found - Order By Newest | ||||
| ||||
Ans. The following code returns the list of Employee objects having employee name starting with A and Dept Name ( Department , Employee Mapped ). session.createCriteria(Employee.class,"emp") .createAlias("emp.department", "dept",Criteria.INNER_JOIN) .add( Restrictions.like("name", "A%") ) .add(Restrictions.eq("dept.name","Finance") .list(); | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  hibernate   hibernate criteria   hibernate table mapping | ||||
Related Questions | ||||
What is Criteria in Hibernate ? | ||||
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 ? | ||||