我使用gorm for 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
。
有谁能够帮我?替代?