使用c# Nest查询ElasticSearch
本文关键字:ElasticSearch 查询 Nest 使用 | 更新日期: 2023-09-27 18:15:27
有一个ElasticSearch索引,其中潜在的点击是这样构建的:
id: number,
source: string,
type: string,
organization: {
main: [string],
support: [string]
},
title: {
main: [string],
sub: [string]
}
我的问题是我不能搜索[]中的元素。
这样做没问题:
var searchResults = client.Search<Document>(s => s
.Index(****)
.Type(****)
.MatchAll()
.Query(q =>
q.Term(p => p.source, "some source name")
))
但是这个不行:
var searchResults = client.Search<Document>(s => s
.Index(****)
.Type(****)
.MatchAll()
.Query(q =>
q.Term(p => p.organization.main[0], "some organization name")
))
我也试过这个版本,但它也不工作:
var searchResults = client.Search<Document>(s => s
.Index(****)
.Type(****)
.MatchAll()
.Query(q =>
q.Term(p => p.organization.main, "some organization name")
))
有谁能看出哪里出了问题吗?
您可以使用LINQ的.First()
扩展方法来引用Elasticsearch中的"organization.main"
字段
var searchResults = client.Search<Document>(s => s
.Index(****)
.Type(****)
.MatchAll()
.Query(q =>
q.Term(p => p.organization.main.First(), "some organization name")
)
);
请记住,您的查询在这里对整个数组进行操作,而不是像使用.First()
可能暗示的那样对organization.main
中的第一项进行操作。数组被索引为无序的多值字段。然而,它们在_source
中是有序返回的。