I'm having trouble figuring out a GORM query to match multiple associations on an object:
class Zoo {
String name
static hasMany = [animals:Animal]
static namedQueries = {
// SEARCH1 match any of a list of animals
searchOr { searchAnimals ->
or {
searchAnimals.each { name ->
animals {
eq('name', name)
}
}
}
}
// SEARCH2 match ALL of a list of animals
searchAnd { searchAnimals ->
and {
searchAnimals.each { name ->
animals {
eq('name', name)
}
}
}
}
}
}
class Animal {
String name
}
SEARCH1 will happily match a zoo with any of a list of animals, but how should SEARCH2 be written to get zoos which have ALL animals in the supplied list?
andis implied anyway and so is unnecessary as it stands. Moving it intosearchAnimals.each {}, the implicitandwould still be there, and the newandwould be applied only to a single statement. Can't hurt trying though - will let you know what happens. – Alex May 11 '12 at 6:33