I am new to elastic. I am trying to search with the following code, but when I want to get back the word "house", if I type "hou" I can find it , but if I type "ouse" it doesn't work.Also, the analyzer doesn't work.Is this the right place to add it?
var response = client.Search<Homes>(n => n
.Index(index)
.Type(type)
.Size(searchSize)
.From(0)
//.Analyzer(analyzername)
.TrackScores(true)
.Query(q=>q.QueryString(qs=>qs.Query("*"+searchWord+"*")
.Fields(f=>f.Field(fieldsForSearchList[0]))
.Analyzer(analyzername)))
);