i've combed through the documentation, but i'm having a problem that i'm still unclear about.
i have a few mapped objects:
Code:
public class A {
List<B> AToBLinks;
}
public class B {
A AObject;
C CObject;
}
public class C {
String name;
}
as you can see, B links objects A and C together (there is a bunch more metadata in B that i'm not including for brevity).
what i've been trying to do is to issue a query along the lines of (this is in "psuedo-query", and not in HQL or SQL)
'find all the As where A.[/code]