Given I have an object A with a collection B and I want to get A with all B that fit a certain criteria
"from A a left join fetch a.bs c where a.id = ? and c.id = ?"
The above certainly won't work so there must be another fetch after I alias c so would this be correct
"from A a left join fetch a.bs c join fetch c.id = ? where a.id = ?"