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 ?

It should be available starting yesterday's nightly from trunk. See https://bugs.eclipse.org/bugs/show_bug.cgi?id=300412 for details.

On 1/22/2010 3:10 PM, 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