Elasticsearch.NET 高亮请求的 NEST 对象初始化程序语法

Elasticsearch.NET NEST Object Initializer syntax for a highlight request

我有:

        var result = _client.Search<ElasticFilm>(new SearchRequest("blaindex", "blatype")
        {
            From = 0,
            Size = 100,
            Query = titleQuery || pdfQuery,
            Source = new SourceFilter
            {
                Include = new []
                {
                    Property.Path<ElasticFilm>(p => p.Url),
                    Property.Path<ElasticFilm>(p => p.Title),
                    Property.Path<ElasticFilm>(p => p.Language),
                    Property.Path<ElasticFilm>(p => p.Details),
                    Property.Path<ElasticFilm>(p => p.Id)
                }
            },
            Timeout = "20000"
        });

我正在尝试添加荧光笔过滤器,但我不太熟悉对象初始化器 (OIS) C# 语法。我已经检查了 NEST official pages 和 SO,但似乎 return 没有针对特定 (OIS) 的任何结果。

我可以在 Nest.SearchRequest class 中看到突出显示 属性 但我没有足够的经验(我猜)从那里简单地构建我需要的东西 - 一些例子和关于如何使用荧光笔 和 OIS 的解释会很热门!

这是流畅的语法:

var response= client.Search<Document>(s => s
    .Query(q => q.Match(m => m.OnField(f => f.Name).Query("test")))
    .Highlight(h => h.OnFields(fields => fields.OnField(f => f.Name).PreTags("<tag>").PostTags("</tag>"))));

这是通过对象初始化:

var searchRequest = new SearchRequest
{
    Query = new QueryContainer(new MatchQuery{Field = Property.Path<Document>(p => p.Name), Query = "test"}),
    Highlight = new HighlightRequest
    {
        Fields = new FluentDictionary<PropertyPathMarker, IHighlightField>
        {
            {
                Property.Path<Document>(p => p.Name),
                new HighlightField {PreTags = new List<string> {"<tag>"}, PostTags = new List<string> {"</tag>"}}
            }
        }
    }
};

var searchResponse = client.Search<Document>(searchRequest);

更新

NEST 7.x 语法:

var searchQuery = new SearchRequest
{
    Highlight = new Highlight
    {
        Fields = new FluentDictionary<Field, IHighlightField>()
            .Add(Nest.Infer.Field<Document>(d => d.Name),
                new HighlightField {PreTags = new[] {"<tag>"}, PostTags = new[] {"<tag>"}})
    }
};

我的文档class:

public class Document
{
    public int Id { get; set; }
    public string Name { get; set; } 
}