嵌套日期范围查询过滤器ElasticSearch NEST C#

时间:2017-01-18 22:47:25

标签: c# .net elasticsearch nest

我有一个简单的Trip对象,其中包含许多Departures,我希望返回包含大于日期的任何偏离的父Trip

Trip JSON看起来像

{
    "title": "Something",
    "code": "something else",
    "departures" : [{ "out" : {date}, "in" : {date} }]
}

我可以通过使用帖子数据调用类型端点上的_search来手动使用PostMan:

{
    "query" : {
        "nested" : {
            "path" : "departures",
            "query" : {
                "bool" : {
                    "filter" : [
                        { "range" : { "departures.out" : { "gt" : 1483315200000 } } }
                    ]
                }
            }
        }
    }
}

但是我使用的是C#,特别是NEST,并且已经编写了这样的查询:

var searchResponse = client.Search<Trip>(s => s
                .Index("indexName")
                .From(0)
                .Size(10)
                .Query(q => q
                    .Nested(n => n
                        .Path(t => t.Departures)
                        .Query(q2 => q2
                            .Bool(b => b
                                .Must(f => f
                                    .DateRange(dr => dr
                                        .Field(t2 => t2.Departures.First().Out)
                                        .GreaterThanOrEquals("01/02/2017")
                                        .Format("dd/MM/yyyy")
                                    )
                                )
                            )
                        )
                    )
                )
            );

NEST抛出错误Failed to create query

query: {
  "nested" : {
    "query" : {
      "bool" : {
        "must" : [
          {
            "match_none" : {
              "boost" : 1.0
            }
          }
        ],
        "disable_coord" : false,
        "adjust_pure_negative" : true,
        "boost" : 1.0
      }
    },
    "path" : "departures",
    "ignore_unmapped" : false,
    "score_mode" : "avg",
    "boost" : 1.0
  }

为什么不正确创建日期范围查询?我尝试了各种不同的变化,似乎没有任何效果!

1 个答案:

答案 0 :(得分:1)

我必须手动设置索引并将离开定义为嵌套对象。只是将数据推送到索引并让它自动映射属性并没有将其定义为嵌套对象,因此它没有正确创建查询。

var index = new CreateIndexDescriptor(INDEX_NAME)
            .Mappings(ms => ms
                    .Map<Trip>(m => m
                            .AutoMap()
                            .Properties(p => p
                                .Nested<Departure>(n => n
                                        .Name(d => d.Departures)
                                )
                            )
                    )
            );