gpt4 book ai didi

c# - 使用elasticsearch进行搜索(包含)

转载 作者:行者123 更新时间:2023-12-03 00:01:23 27 4
gpt4 key购买 nike

我正在开发名为eBookRepository的ASP.NET MVC应用程序,其中包含在线图书。 电子书具有自己的标题,作者等。因此,现在我正在尝试实现搜索机制。我必须使用Elasticsearch作为搜索引擎。

我在此代码中将我的电子书索引了,它可以工作。

Uri nodeLocation = new Uri("http://localhost:9200");
IConnectionPool connectionPool = new SniffingConnectionPool(new List<Uri> { nodeLocation });
ConnectionSettings settings = new ConnectionSettings(connectionPool).DefaultIndex("ebookrepository");
esClient = new ElasticClient(settings);

foreach (var ebook in ebooksService.GetAll())
{
IIndexResponse result = esClient.Index(ebook, i => i.Index("ebookrepository").Type("ebook").Id(ebook.ID));
}

另外,如果我按标题 搜索我的电子书,它也可以工作,但前提是搜索文本 与电子书的标题完全相同。这样做的代码在这里:
var search = esClient.Search<Ebook>(s => s.Source(sf => sf.IncludeAll()).Query(q => q.Term(p1 => p1.Title, searchString)));

searchString变量是我在UI的文本框中键入的字符串(文本)。

所以我找不到像上面这样的类似代码,它应该像 .C#中包含方法一样工作,我在寻找正确的解决方案,我认为我应该使用.Match而不是.Term(.Term返回完全匹配的结果),但是我无法找到正确的解决方案。

当我在寻找正确的解决方案时,许多问题和答案都是JSON格式的(我不太擅长),但我不想要该格式,我需要.NET代码。

最佳答案

关于c# - 使用elasticsearch进行搜索(包含),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48785059/

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