Create a group condition ex: (myObject.myField is not null and
myObject.intField > 2)
this condition is not bind to any query builder until you pass it to the @see
Torpedo.where(Object) or to a ValueOnGoingCondition create by a where
In HQL you can specify field is only in subclass
Entity from = from(Entity.class); ExtendEntity extend = extend(from,
ExtendEntity.class); where(extend.getSpecificField()).eq("test");
Query is the result of the Torpedo.select() You can retreive the data with
methods get and list or access to HQL String with getQuery and the related
parameters with getParameters()