I'm upgrading to Nest 2 (elasticsearch 1.x to 2.3), but notice on breaking changes that FuzzyMinimumSimilarity and OnFieldsWithBoost are gone. How should i replace this code below to Nest v2?
new SearchDescriptor<T>().Type(searchTypes).Query(q =>q.QueryString(qs => qs.Query(fuzzy).FuzzyMinimumSimilarity(0.7)));
And for FuzzyMaxExpansions(0.7)
Here are the fuzziness options available on
query_stringquery in NEST 2.x (use latest 2.5.8)which yields
Also take a look at the release blog post and breaking changes between 1.x and 2.x documentation