Does it support a search type like “CONTAINS” using full text search? We can do this in sql as follows:
'LIKE %test%'
But I couldn’t see anything like that in Full Text Search. At the moment, I was only able to get it to work as “startsWith”. For this I have code like this:
As you can see here, the FullTextFunction.Match() function takes two parameters and they are both strings. I couldn’t find a place to write Expression.regex here
Expression.regex() is not something you are using with FullTextFunction’s match(). Basically, use Expression.regex() instead of FullTextFunction’s match()