what is Querydsl 'Q' -


i saw example of querydsl didn't understand qemployee in that

qemployee employee = qemployee.employee; qemployee e = new qemployee("e"); query.from(employee)     .where(employee.weeklyhours.gt(         new hibernatesubquery().from(employee.department.employees, e)        .where(e.manager.eq(employee.manager))        .unique(e.weeklyhours.avg()) )).list(employee) 

someone please explain 'q'

the "q" classes auto-generated query types, based on entities, used querying in querydsl.

see here (section 2.1.5): http://www.querydsl.com/static/querydsl/latest/reference/html/ch02.html#d0e184


Comments

Popular posts from this blog

blackberry 10 - how to add multiple markers on the google map just by url? -

php - guestbook returning database data to flash -

java - Using an Integer ArrayList in Android -