gpt4 book ai didi

elasticsearch - 使用 NEST API Elasticsearch 的 MultiSearch 查询语法

转载 作者:行者123 更新时间:2023-12-03 00:46:04 25 4
gpt4 key购买 nike

有谁知道使用 NEST 库版本 7.6 使用 MultiSearch 的语法。

我们尝试过:

var result = client.MultiSearch(ms => ms
.Search<ElasticsearchProject>("projects", s => s.MatchAll())
.Search<Person>("people", s => s.MatchAll())
);

看来这在 7.6 版中不再有效

最佳答案

MultiSearch 预计 Indices作为第一个参数,虽然它是一个可选参数。要仅传递委托(delegate),请标记参数

var result = client.MultiSearch(selector: ms => ms
.Search<ElasticsearchProject>("projects", s => s.MatchAll())
.Search<Person>("people", s => s.MatchAll())
);

关于elasticsearch - 使用 NEST API Elasticsearch 的 MultiSearch 查询语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61200541/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com