Hi,
Ok let me explain the problem. I have a database table called "Person" with following fields ID,NAME,AGE and SEX.
Now I have corresponding
JAVA Bean called Person.java with all above listed column names as attributes.
Now instead of writing a HQL for filtering data from database as
for retrieving data of Person having ID greater then 56, I am wondering, if Hibernate supports any code like e.g.
Now the above code could simply give me all the dataset according to the matching condition.
Any help would be greatly appreciated.
Thanks