为了账号安全,请及时绑定邮箱和手机立即绑定

Elasticsearch.NET & NEST - 搜索总是返回 0 个结果

Elasticsearch.NET & NEST - 搜索总是返回 0 个结果

C#
动漫人物 2021-07-08 17:11:22
我正在尝试使用该ElasticClient.Search方法进行搜索,但无论我设置什么术语或搜索字段,我总是得到 0 个结果。这是我的 POCO 的结构:public class MyParent{    public MyChild MyChild { get; set; }}public class MyChild{    public string MyField { get; set; }}然后这是我的实际搜索代码:string searchTerm = "myChild.myField";string searchValue = "C";Field searchField = new Field(searchTerm);ISearchResponse<MyParent> result =    Client.Search<MyParent>(s =>        s.Query(q => q.Term(searchField, searchValue)));if (result != null &&     result.Documents != null &&     result.Documents.Count != 0){    ...}任何帮助表示赞赏!
查看完整描述

1 回答

?
冉冉说

TA贡献1877条经验 获得超1个赞

发现问题了。我没有设置索引!我将我的搜索代码更改为这个并且它有效:


ISearchResponse<MyParent> result =

    Client.Search<MyParent>(s =>

        s.Index("my_index_").Query(q => q.Term(searchField, searchValue)));


查看完整回答
反对 回复 2021-07-10
  • 1 回答
  • 0 关注
  • 214 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信