I have a table something like this
table1(int Id, varchar2() Name, varchar2() Details)
I am trying to build a predicate expression for the following SQL is it possible to generate it.
SELECT A.Id, A.Details, score(10) FROM table1 A WHERE
CONTAINS (a.Details, 'abc',10) > 0 order by score(10) desc;
Using the FieldFullTextSearchPredicate
predExp.Add(new FieldFullTextSearchPredicate( table1Fields.Details, FullTextSearchOperator.Contains, 'abc'));
i was only able to get something like this
SELECT A.Id, A.Details FROM table1 A WHERE CONTAINS (a.Details, 'abc');
but unable to use the score operator.
LLBLgen pro V 3.5.
Oracle DB