Usage of OR and and in hibernate criteria

Source: Internet
Author: User

  1. /s filter to remove invalid data
  2. /* DETACHEDCRITERIA.ADD (
  3. Restrictions.or (
  4. Restrictions.like ("Chanpin", "refrigerator", matchmode.anywhere),
  5. Restrictions.or (
  6. Restrictions.like ("Chanpin", "Washing Machine", matchmode.anywhere),
  7. Restrictions.or (
  8. Restrictions.like ("Chanpin", "water heater", matchmode.anywhere),
  9. Restrictions.like ("Chanpin", "air conditioner", Matchmode.anywhere))))
  10. );
  11. */
  12. Disjunction dis=restrictions.disjunction ();
  13. Dis.add (Restrictions.like ("Chanpin", "refrigerator", matchmode.anywhere));
  14. Dis.add (Restrictions.like ("Chanpin", "washing machine", matchmode.anywhere));
  15. Dis.add (Restrictions.like ("Chanpin", "water heater", matchmode.anywhere));
  16. Dis.add (Restrictions.like ("Chanpin", "air conditioning", matchmode.anywhere));
  17. Detachedcriteria.add (DIS);
  18. //e filtering to remove invalid data



Method used to combine a set of logical OR "or" conditions

Java code
    1. Restrictions.disjunction ();



A method used to combine a set of logical and "and" conditions

Java code
    1. Restrictions.conjunction ();





Comment out part of the code, the query results and the following code, if you write multiple logic or conditions for a field, the following way is better. Select the appropriate method according to the specific situation.

Usage of OR and and in hibernate criteria

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.