Would be good if search capability would be built in instead of manual query building. Something like this would probably be nice:
QueryBuilder q = QueryBuilder.query(Entity.class);
q.where(q.e().getProperty()).is(something).and(q.e().getProperty2()).between(val1,val2).orderBy(desc(getDesc()),asc(getAsc()).limit(x).skip(y).getAll()
Would be good if search capability would be built in instead of manual query building. Something like this would probably be nice:
QueryBuilder q = QueryBuilder.query(Entity.class);
q.where(q.e().getProperty()).is(something).and(q.e().getProperty2()).between(val1,val2).orderBy(desc(getDesc()),asc(getAsc()).limit(x).skip(y).getAll()