Określanie i używanie NGramTokenizer z klientem C # NEST do wyszukiwania elastycznego

Zaktualizowano, aby pokazać próbkę roboczą

Próbuję wykonać częściowe wyszukiwanie w kolekcji nazw użytkowników w ElasticSearch.

Wyszukiwanie wokół wskazało mi wnGram Tokenizer kierunek, ale jestem zakłopotany we właściwym wdrożeniu i nie osiągam żadnych wyników.

Jest to odpowiedni kod usunięty z projektu, nad którym pracuję.

Próbowałem różnych kombinacji i typów wyszukiwania bezskutecznie.

setup.cs

var client = new ElasticClient(settings.ConnectionSettings);

// (Try and) Setup the nGram tokenizer.
var indexSettings = new IndexSettings();
var custonAnalyzer = new CustomAnalyzer();

customAnalyzer.Tokenizer = "mynGram";
customAnalyzer.Filter = new List<string> { "lowercase" };

indexSettings.Analysis.Analyzers.Add("mynGram", customAnalyzer);

indexSettings.Analysis.Tokenizers.Add("mynGram", new NGramTokenizer
                                                    {
                                                        MaxGram = 10,
                                                        MinGram = 2
                                                    });

client.CreateIndex(settings.ConnectionSettings.DefaultIndex, indexSettings);

client.MapFromAttributes<Profile>();

// Create and add a new profile object.
var profile = new Profile
                  {
                      Id = "1",
                      Username = "Russell"
                  };


client.IndexAsync(profile);

// Do search for object
var s = new SearchDescriptor<Profile>().Query(t => t.Term(c => c.Username, "russ"));

var results = client.Search<Profile>(s);

Profile.cs

public class Profile
{
    public string Id { get; set; }

    [ElasticProperty(IndexAnalyzer = "mynGram")]
    public string Username { get; set; }
}

Wszelkie wskazówki będą bardzo mile widziane.

questionAnswers(1)

yourAnswerToTheQuestion