According to the [ElasticSearch documentation](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-match-query.html), `minimum_should_match` is supported on all `match` queries, but does not appear to be supported in NEST. It seems like I should be able to write something like: ``` c# return query.Match(match => match .OnField("_all") .Query(keywords) .MinimumShouldMatch("2<80%") ); ``` But of course I cannot... the last line isn't in the API for `MatchQueryDescriptor<T>`. Shouldn't it be part of that API? Is there some other way to add `minimum_should_match` to the query? (P.S. I know it's supported by the NEST API in Boolean and Query String clauses, but that doesn't help me here.)