Skip to content

Instantly share code, notes, and snippets.

@kevingo
Created June 14, 2012 07:38
Show Gist options
  • Save kevingo/2928776 to your computer and use it in GitHub Desktop.
Save kevingo/2928776 to your computer and use it in GitHub Desktop.
JPA - createNativeQuery with resultClass
Query q = JPA.em().createNativeQuery("SELECT * from post p, Post.class");
List<Post> posts = (List<Post>)q.getResultList();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment