tags:

views:

370

answers:

1

I have Hibernate domain objects that looks like this:

   class Player {
      List<Item> inventory;
   }

   class Item {
      List<Enchantment> enchantments;
   }

   class Enchantment {
      boolean isSuperiorEnchantment;
   }

I need to construct an HQL query that returns to me a list of all players that have at least one item with an enchantment on it that has the isSuperiorEnchantment flag set. I can't for the life of me figure out a way to express this in HQL.

Any ideas?

+2  A: 

Assuming the appropriate mappings on all of the above, the query you're looking for is:

from Player as p
  left join p.inventory as i
  left join i.enchantments as e
  where e.isSuperiorEnchantment = 1
ChssPly76
Thanks, this worked great. I had to remember to add a "select p" to the front of it, but otherwise it's exactly what I needed!
CaptainAwesomePants