Rankfeature method not working c#

.Query(q=>q.Bool ( bb=> bb.Must(m => m.Match(x=>x.Name("named_query").Field( p => p.Content).Query(data.SearchText))) .Should(s => s.RankFeature(r =>r.Name("named_query").Boost(1.1) .Field(f => f.Rank).Saturation() )) )

My result documents are not being sorted based on rank value.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.