gpt4 book ai didi

elasticsearch - Elasticsearch NEST翻译

转载 作者:行者123 更新时间:2023-12-03 01:05:53 24 4
gpt4 key购买 nike

我进行的搜索给出了正确的结果,并试图使其在.NET Nest中工作,但我似乎无法获得正确的语法。这是我有的elastricsearch查询:

{
"query": {
"filtered": {
"query": {
"match": { "formattedName": "Michael" }
},
"filter": {
"bool": {
"must": [
{ "term": { "projectId": "5022" } },
{ "term": { "isInvalid": "false" } }
]
}
}
}
}
}

在我的解决方案中,我有以下内容:
var lst = client.Search<EntitySearchItem>(s => s
.Size(recordCount)
.Index("entitysearch")
.Filter(f => f
.Bool(b => b
.Must(m => m.Term("projectId", projectId),
m => m.Term("isInvalid", "false"))))
.Query(q => q
.Match(p => p.OnField(f => f.FormattedName).Query(name))));

熟悉Nest的人知道我如何获得相同的结果吗?谢谢!

最佳答案

在示例中,您的elasticsearch查询使用filtered query。您可以像下面这样用NEST创建一个:

var searchResponse = client.Search<EntitySearchItem>(s => s
.Index("entitysearch")
.Query(q => q
.Filtered(f => f
.Query(qq => qq
.Match(m => m.OnField(field => field.FormattedName).Query(name)))
.Filter(ff => ff.Bool(b => b
.Must(m => m.Term(t => t.ProjectId, projectId), m => m.Term(t => t.IsInvalid, "false")))))));

我的 EntitySearchItem
public class EntitySearchItem
{
public string ProjectId { get; set; }
public string IsInvalid { get; set; }
public string FormattedName { get; set; }
}

关于elasticsearch - Elasticsearch NEST翻译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29565469/

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