Skip to content

Instantly share code, notes, and snippets.

@f1xmAn
Created February 18, 2017 23:13
Show Gist options
  • Save f1xmAn/85c10a89b929394de3f41b0468c0b0e6 to your computer and use it in GitHub Desktop.
Save f1xmAn/85c10a89b929394de3f41b0468c0b0e6 to your computer and use it in GitHub Desktop.
public interface QueryBuilder<T> {
QueryBuilder<Person> use(Session session);
TypedQuery<T> toLoadingQuery(int offset, int limit);
TypedQuery<Long> toCountingQuery();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment