基本上我有3个要检查的字段:
class Book {
String title
String ISBN
String type
}
我正在尝试使用命名查询基于单个搜索字符串对这3个字段中的每个字段进行不区分大小写的搜索。这是我现在拥有的:
static namedQueries = {
search { String searchString ->
ilike("title", searchString)
or {
ilike("ISBN", searchString)
}
or {
ilike("type", searchString)
}
}
我没有任何例外或任何事情,但是,当应该有一些时,它根本不返回任何结果。有什么想法吗?
编辑:
我更新了doelleri的例子,它现在正在运作。以下是查询的最后一部分:
from book this_ where (lower(this_.title) like ? or lower(this_.isbn) like ? or lower(this_.type) like ?)
我还在命名查询中做了一个断点,以确定该字符串是否已被传入,而且它是。
答案 0 :(得分:3)
我相信正确的语法是
static namedQueries = {
search { String searchString ->
or {
ilike("title", searchString)
ilike("ISBN", searchString)
ilike("type", searchString)
}
}
}