Is there anyway to get the score of the searchhit when using typed search?
SearchHit<> contains Score property:
var typedQuery = searchClient.Search<PageData>().GetResult(); foreach (SearchHit<PageData> hit in typedQuery.Hits) { var score = hit.Score; }
Works like a charm, thanks!
Is there anyway to get the score of the searchhit when using typed search?