Create custom token filter with NEST
How can I configure Index using NEST with such JSON: "settings":{ "analysis":{ "filter":{ "name_ngrams":{ "side":"front", "max_gram":50, "min_gram":2, "type":"edgeNGram" } }, "analyzer":{ "partial_name":{ "filter":[ "standard", "lowercase", "asciifolding", "name_ngrams" ], "type":"custom", "tokenizer":"standard" } } } I could create my custom analyzer using CustomAnalyzer class, but I could'n find how to create custom filter and register it within my analyzer. Thanks in advance! After some searching I've found a solution: var partialName = new CustomAnalyzer { Filter = new List<string> {