Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following class structure:

GParent
|-P1
  |-C1
  |-C2
  |-C3
|-P2
  |-C4
  |-C5

GParent, P1, P2, Ci (i=0..6) are classes. They have been mapped to a table called yatable in my database. Each of the above classes are recognized by the discriminator column in yatable.

The class GParent has the following properties( name, lastName) and the others have also the properties (nameClassName meaning nameP1, nameC1...) and they are all mapped to one table(table for hierarchy).

  1. How can I fetch(What is the HQL) all the rows for which the name property contains the string "sample"?(Regardless of class type)
  2. How can I do the same thing but only for the classes C4, C2, C1?(I don't want to run 3 queries.)
  3. How can I do the second point but with the same restrictions on the properties(name, nameC4, nameC2, nameC1).

It is clear that I don't want to run three queries and I expect Hibernate to give me a single list.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.