2 domain classes, person and attribute
class Person {
static hasMany = [attributes : Attribute]
}
class Attribute{
String key
String value
}
query for fname:
def c = Person.createCriteria()
def result = c.list{
attributes {
eq("key", "fname")
eq("value", "foo")
}
println result
}
Result: [foo foo ,foo bar]
query for lname:
def c = Person.createCriteria()
def result = c.list{
attributes {
eq("key", "lname")
eq("value", "bar")
}
println result
}
Result: [bar bar ,foo bar]
query for lname OR fname:
def c = Person.createCriteria()
def result = c.list{
or{
attributes {
eq("key", "fname")
eq("value", "foo")
}
attributes {
eq("key", "lname")
eq("value", "bar")
}
}
println result
}
Result: [foo foo ,foo bar ,bar bar]
but if i change OR to And, i get no results:
def c = Person.createCriteria()
def result = c.list{
and{
attributes {
eq("key", "fname")
eq("value", "foo")
}
attributes {
eq("key", "lname")
eq("value", "bar")
}
}
println result
}
Result: []