I am new to JPA
I am trying to query a table where my input date value should be between the startDate and endDate of the database record
I am trying to do:<
Try this:
criteriaBuilder.between(criteriaBuilder.literal(inputDate), root.get("startDate"), root.get("endDate"));