Elasticsearch NEST亮点

时间:2015-09-21 15:18:50

标签: c# elasticsearch highlight nest

我刚开始在C#项目中使用elasticsearch。我想在搜索结果页面中显示搜索到的术语,但不知道我如何处理它们的显示。

我的查询如下

result = client.Search<MyContentClass>(s => s
            .Query(a => 

            a.MatchPhrase(m => m.OnField("_all").Query(m_strSearchQuery))

            .From(intFrom)
            .Size(intSize)
            .Highlight(h => h
            .PreTags("<b style='color:orange'>")
            .PostTags("</b>")
            .OnFields(f => f
            .OnField(e => e.Title)
            .OnField(e => e.Content)                
            )
            )
            ); 

然后我将结果设置为变量,即我的转发器的数据

var documents = result.Hits.Select(h => h.Source);

this.rptSearch.DataSource = documents;
    this.rptSearch.DataBind();
    this.rptSearch.Visible = true;

我没有看到我的结果中突出显示的任何条款,也没有看到高亮标记中包含的术语......

我做得对不对?

1 个答案:

答案 0 :(得分:-1)

要点存储在Hightlights对象的Hit属性中。

您可以通过以下方式访问它们:

result.Hits.Select(h => h.Highlights.Values.Select(v => string.Join(", ", v.Highlights)))

希望它有所帮助。