Hi,
I would like to retrieve all the primKeys (user defined) by doing something like:
TypedQuery<MyClassPrimKey> query = em.createQuery("SELECT mif.primkey FROM MyClass mif", MyClassPrimKey.class);
The only alternative I can think of - would be to store the primkey on the object - but sounds like it is double storage
Thanks