如何使用NEST在C#中的条件条件下构建弹性搜索查询?

时间:2019-07-03 10:45:42

标签: c# elasticsearch nest

我想要带有简单条件的ElasticSearch数据。 数据存在并且符合搜索条件,但是我的请求没有用。 使用MatchAll函数,可以获得符合条件条件的数据。

我正在使用Nest软件包

var result = _client.Search<RawCacheProposition>(x => x
                      .Query(q => q
                        .Term(t => t.Field(f => f.CabinClass).Value("Y"))));

我没有任何错误,但是“ result.Documents”为空。

0 个答案:

没有答案