Hello,
based on the javadoc
public QueryBuilder<T,ID> limit(Long maxRows)
Limit the output to maxRows maximum number of rows. Set to null for no limit (the default).
I expect that limit(0) returns 0 rows. Is my expectation correct? If so, I think there is a bug because
QueryBuilder qb = dao.queryBuilder().offset(0).limit(0);
returns all values.