简体   繁体   中英

Grails/CreateCriteria - compare two lists

By using the CreateCriteria, I want to compare two lists and check if there are at least one element in groups present in users . Is there something like eq to perform that?

Domain

class User {
    String login
    static hasMany = [groups = String]
} 

class Project {
    String  name
    static hasMany = [users = User]
}

CreateCriteria

def UserInstance = User.get(1)

def idList =  Project.createCriteria().list () {

    projections { distinct ( "id" )
        property("name")
        property("id")
    }

    eq("users.login", UserInstance.groups) //check if there are at least one element in groups list present in users list.  
    order("name","desc")

}

Yes, you can use inList(String propertyName, Collection c) like this:

def UserInstance = User.get(1)

def idList =  Project.withCriteria {

    projections { 
        distinct("id")
        property("name")
        property("id")
    }

    users {
        inList("login", UserInstance.groups)
    }

    order("name","desc")
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM