将任意布尔条件列表合并到Nest查询中

时间:2016-08-29 17:58:35

标签: c# elasticsearch nest

我正在寻找一种通过弹性NEST API提供任意数量的布尔条件的好方法,方法是循环一个条件列表并累积它 - 一个列表项是一个布尔条件 - 包含在NEST中Api查询调用。

以下是一个不完整的代码示例,其中我将介绍这一点,但我会陷入流畅的界面以及如何最好地执行它。

此示例基于虚构的酒店文档示例,用于说明目的。

Func<BoolQueryDescriptor<Hotel>, IBoolQuery> fnBool; // ... 

foreach (var someCriteriaObject in listOfCriteriaObjectsOneForEachBoolConditionIWantToAdd)
{
    // Idea is to build up fnBool or a similar construct for passing to the elastic query later on... 
    // Use .Must() for each item. 
}

// Finally execute the elastic Nest query with all the conditions included - 
ISearchResponse<Hotel> elasticResponse = this.Client.Search<Hotel>(s => s
    .Query(q => q
        .Bool(fnBool) // << pass the constructed boolean (all conditions)
    )
);
var results = elasticResponse.Hits; //... etc ... 

以上是我的第一个伪代码方法,但我愿意接受建议。

实际的弹性指数会有像http://localhost:9200/my-index/hotel/_mapping这样的酒店映射。

1 个答案:

答案 0 :(得分:2)

声明查询容器:

List<QueryContainer> lst = new List<QueryContainer>();

然后添加您的查询:

lst.Add(Query<xxx>.Term(t => t.Field(f => f.zipCode).Value(zip)));

最后,运行完整查询:

            ISearchResponse<xxx> results = elastic.Search<xxx>(s => s
                .Query(q => q
                    .ConstantScore(cs => cs
                        .Filter(ff => ff
                            .Bool(b => b.Must(lst.ToArray())))))

您可以根据自己的需要进行调整,但那是基本的jyst。请注意ToArray()调用的最后一行,即传递查询容器的位置。