I have an entity with some fields of type List<OtherEntity>, say named "otherEntities". After doing a build and running the test, I get "<openjpa-2.2.0-r422266:1244990 nonfatal user error>" and in my JPQL, in the FROM clause, I have an inner join of the style, "in(thisEntity.otherEntities) others" and the error detail is complaining that there is no field, "otherEntities" (there definitely is). When I decompile the enhanced class, indeed, I find that the added array, "pcFieldNames" does not include the field, "otherEntities".
How can I solve this? Why is the enhancer not seeing that field? Thanks, Chris