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).
- How can I fetch(What is the HQL) all the rows for which the name property contains the string "sample"?(Regardless of class type)
- How can I do the same thing but only for the classes C4, C2, C1?(I don't want to run 3 queries.)
- 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.