I am trying to search to number fields in elastic.
When I am searching for 39693 and type 39693 I get the right result.
But when I am typing 963 I don't get any result.
var response = client1.Search(n => n.Index(index)
.Type(type)
.Query(q => q.ConstantScore(f => f.Filter(t => t.Term(documentField, searchWord))))
.Size(searchSize)
.From(0)
.Sort(s => s.Descending(SortSpecialField.Score))
.TrackScores(true));