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?