I am using LazyClob plugin in my Grails application in order to make field of domain class to be lazy-loaded. When I used String instead of LazyClob I could create query like this:
new DetachedCriteria(MyClass).build {
ilike('myField', "%${content}%")
}
Is it possible to construct such Criteria query when LazyClob is used?