I am working with grails. I have a class:
class Checkin_checkout {
Date checkin_date
Date checkout_date
String time_duration
int employee_id
}
I want to retrieve all the rows from database having same value of employee_id
.
please help.