I'm new at grails and stuck with a performance issue. I have three domain classes:
User{
Set authorities
static hasMany = [authorities: Role]
}
Organization{
//more code
}
UserOrganization{
User user
Organization organization
}
there are many roles (authorities) assigned to a user ('ROLE_ADMIN', 'ROLE_MANAGER')
In one scenario I have a list of organization and I need to find out all the users with manager authority (ROLE_MANAGER) of these organizations.
I tried using GORM like this:
UserOrganization.createCriteria().list{
inList('organizaton',organizationList)
//but do not know how to filter out users with ROLE_MANAGER authority
}
Is there any way to get it done in single GORM query like this? I could get the list of all the Users of these organizations and run retainAll{closure} to filter out the managers but that would be a two step process and create a performance bottleneck.