Say in C# I have the following code:
int i = 1;
ListOfInts.Where(li=>li > i).ToList();
I am wondering when I am using Hibernate, are there any possible way of doing similar stuff from above, instead of using the HQL?
Say in C# I have the following code:
int i = 1;
ListOfInts.Where(li=>li > i).ToList();
I am wondering when I am using Hibernate, are there any possible way of doing similar stuff from above, instead of using the HQL?