Hi,
Tell the code to get the max date in Hibernate?
Thanks
Hi,
You can use the projection in Hibernate for getting the max date.
Here is example code:
Projections.max("addmision_date")
Check the complete source code at Hibernate Criteria Max Date Example.
Thanks
Ads