我将 gorm 用于 mongo 插件版本 3.0.1。并拥有一个域模型 Post。
class Post {
ObjectId id
String content
String status
status mapping = {
index content: "text"
}
}
我想withCriteria
对我的查询使用方法。
def list = Post.withCriteria {
and {
eq('status', 'STATUS')
ilike('content', "%${q}%")
}
}
我在源代码插件中找不到全文搜索MongoCriteriaBuilder
的方法。有谁能够帮我?备择方案?