Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipselink-users] Any idea when TypedQuery createNamedQuery will be implemented ?

The fix was checked in late last week. It should be in the latest 2.0.1 and 2.1 nightlies.

-Tom

Antonio Goncalves wrote:
Hi,

I wanted to create a named typed query but I get an UnsupportedOperationException (I'm using EclipseLink 2.0.0) :

public class EntityManagerImpl ... {
public <T> TypedQuery<T> createNamedQuery(String name, Class<T> resultClass){
        throw new UnsupportedOperationException();
    }
}

Do you know if/when this feature will be implemented ?

Thanks,
Antonio


------------------------------------------------------------------------

_______________________________________________
eclipselink-users mailing list
eclipselink-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/eclipselink-users


Back to the top