I have an Entity which has an association to another Entity annotated with @Where, like so
public class EntityA { @OneToMany @Where(...) private
After lots of research it appears that this is simply impossible. I'd strongly suggest avoiding @Where, as it is hard to predict beforehand if you'll ever need those associations or not.