Question: Custom Query Methods Suppose you have an Employee entity with one Age field. Which of the following custom query methods will you use to find
Custom Query Methods
Suppose you have an Employee entity with one Age field. Which of the following custom query methods will you use to find all the employees who are younger than the specified age?
Hint:
- Think of the naming convention for custom methods that you were taught in this module.
- Let's say there is no field with the attribute name 'X' in the Employee class. Then, is the method's declaration findByX valid?
1) ListfindEmployeesYoungerThan(int age)
2) ListfindByAgeLessThan(int age)
3) Employee findByAgeLessThan(int age)
4) ListfindAgeLessThan(int age) Provide right solution
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
