Skip to content

Instantly share code, notes, and snippets.

@pawelkaczor
Created February 22, 2011 11:01
Query query = em.createQuery("SELECT o FROM Order o LEFT JOIN FETCH o.lineItems");
query.setFirstResult(1);
query.setMaxResults(3);
List<Order> page = query.getResultList();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment