I have a project that I have to implement a lazy sort of search on database.
What I'd like to do is to use org.hibernate.criterion.Example but using 'or' condition for each property.
For example, let's say I have a class like below
public class Cat{
private String name;
private String breed;
private Date birthDay;
/*getter and setter omitted*/
}
And I set all three of the fields with some value
Cat cat2Find = new Cat();
cat2Find.setName("Nabi");
cat2Find.setBreed("That hairless Egyptian cat");
cat2Find.setBirthDay( someDate ); //5th May 2005 for example
I want to find a cat whose name is "Nabi" or breed is "hairless Egyptian cat" or whose birthday is 5th May 2005
I tried using org.hibernate.criterion.Example but show_sql showed me it used And condition for each fields. I also tried using org.hibernate.criterion.Disjunction with LogicalExpression but it was so cumbersome to iterate through all the fields.
I wonder if there is some class that works like criterion.Example but with and condition for each fields or I can choose either 'And' or 'OR'.
Thank you for your time : )