I want to fetch k nearest value to a given value in Hibernate I use this command:
List li1 = session.getNamedQuery("NazerResult.searchnearestasc").setParameter("e", tarefe).setParameter("v", vahed).setParameter("s", cluster_no).setParameter("f", fieldvalue).setMaxResults(k).list();
and the NazerResult.searchnearestasc NamedQuery is:
query = "select t FROM NazerResult t WHERE t.tarafe=:e AND t.vahed=:v AND"
+ " t.cluster_no=:s AND t.boxweight <=:f ORDER BY boxweight ASC"
It works properly except for a given value that is smallest than all of the value in database for this value it doesn't return anything do you know what is my problem?