• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

How to combine two detachedCriteria with logical operators

 
Ranch Hand
Posts: 108
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear all , I have two available two detachedCriteria as below


Now I want to reuse these two detachedCriteria to get the student that age above 20 or age below 10.

My current way is


The code will use two separate sql to get the student data( 1. get student age above 20 , 2. get student age below 10).

I want to let hibernate use one sql to get the data (student age above 20 or student age below 10).
But the code can't work, because the parameter type of Restrictions.or is Criterion.


Can somebody teach me how to combine two availabe detachedCriteria with logical operators?

Thanks
 
It is difficult to free fools from the chains they revere - Voltaire. tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic