Guest User

Untitled

a guest
Aug 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Hibernate Criteria on list of Objects
  2. select * from table
  3. where
  4. (lastname='doe' and firstname='john')
  5. or (lastname='huang')
  6. or (firstname='adam')
  7.  
  8. class person{
  9. firstname;
  10. lastname;
  11. }
Add Comment
Please, Sign In to add comment