0

I am trying to use a multimatch query by instantiating an object of the following type:

MultiMatchQuery query = new MultiMatchQuery()
            {
                Query = searchString,
                Fuzziness = 6, //TODO Need to set AUTO Here
                Fields = new PropertyPathMarker[] { "title", "hTexts.htext", "tnText" }
            });

As seen above, I am setting fuzziness to 6, but I need to set it to auto. How do I do it?

nvoigt
  • 75,013
  • 26
  • 93
  • 142
labyrinth
  • 1,104
  • 3
  • 11
  • 32

1 Answers1

1

Not yet possible, but pretty soon in version 2.0.0: https://github.com/elastic/elasticsearch-net/pull/941

Andrei Stefan
  • 51,654
  • 6
  • 98
  • 89