NEST Elastic 6.x搜索全文本和多个索引

时间:2018-11-12 10:37:25

标签: c# elasticsearch full-text-search nest

我有问题。我想使用嵌套库c#在Elastic 6.x中进行搜索。

我的松紧带有任何索引。例如产品间,建议间,屏幕间对比。

我想一次查询全部内容吗?

        var res = client.Search<dynamic>(s => s
            .Index("inter-*")
            .AllIndices()
            .AllTypes()
            .Query(q => q.Match(p => p.Field("nameKey").Query("bla bla")))
        );

0 个答案:

没有答案