Hi Im trying to build a query in c# using solr:
Query.Append($"&fq={{frange l=3}}termfreq(Description,'keyword') OR {{frange l=1}}termfreq(title, 'keyword'")"
While this one below works :
Query.Append($"&fq={{frange l=3}}termfreq(Description,'keyword')")
The occurrence should be 3 times in the description OR 1 time in title. But executing the query gives a syntax error. Using termfreq once works but with conditions, it's failing.
Any help? Thanks.