up vote 5 down vote favorite
2
share [g+] share [fb]

I'm trying to do a basic "OR" on three fields using a hibernate criteria query.

Example

class Whatever{
 string name;
 string address;
 string phoneNumber;
}

I'd like to build a criteria query where my search string could match "name" or "address" or "phoneNumber".

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

You want to use Restrictions.disjuntion(). Like so

session.createCriteria(Whatever.class)
    .add(Restrictions.disjunction()
        .add(Restrictions.eq("name", queryString))
        .add(Restrictions.eq("address", queryString))
        .add(Restrictions.eq("phoneNumber", queryString))
    );

See the Hibernate doc here.

link|improve this answer
That is perfect thanks! I finally found an example online, but I'm glad it's here for future reference. – ScArcher2 Sep 11 '08 at 20:30
feedback

Assuming you have a hibernate session to hand then something like the following should work:

Criteria c = session.createCriteria(Whatever.class);
Disjunction or = Restrictions.disjunction();
or.add(Restrictions.eq("name",searchString));
or.add(Restrictions.eq("address",searchString));
or.add(Restrictions.eq("phoneNumber",searchString));
c.add(or);
link|improve this answer
I do like the syntax of creating the Disjunction and naming it or. It's a lot more readable than the other solution. – ScArcher2 Sep 11 '08 at 21:04
feedback

Just in case anyone should stumble upon this with the same question for NHibernate:

ICriteria c = session.CreateCriteria(typeof (Whatever))
    .Add(Expression.Disjunction()
        .Add(Expression.Eq("name", searchString))
        .Add(Expression.Eq("address", searchString))
        .Add(Expression.Eq("phoneNumber", searchString)));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.