gpt4 book ai didi

c# - 使用 NEST 和 .NET 从 Elasticsearch 返回多个派生类实例

转载 作者:太空狗 更新时间:2023-10-30 01:32:50 24 4
gpt4 key购买 nike

我正在尝试使用 NEST 返回从公共(public)子类派生的各种对象。

在这个例子中,我有一个名为“Person”的基类,然后我有一个名为“Firefighter”和“Teacher”的派生类。实例存储在名为“people”的索引中。

我想搜索我的索引并返回 Firefighters 和 Teachers 的组合,但我能得到的最好结果是 Persons 列表。

The documentation要求使用 ISearchResponse.Types,但我没有看到此函数存在。 This post ,在 StackOverflow 上,也引用了 .Types 函数,但我只是不认为它是一个选项。

这是我要解决的问题的示例。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Nest;
using Elasticsearch;
using Elasticsearch.Net;

namespace ElasticSearchTest
{
class Program
{
static void Main(string[] args)
{
var myTeacher = new Teacher { id="1", firstName = "Steve", lastName = "TheTeacher", gradeNumber = 8 };
var myFiregighter = new Firefighter { id="2", firstName = "Frank", lastName = "TheFirefighter", helmetSize = 12 };

SingleNodeConnectionPool esPool = new SingleNodeConnectionPool(new Uri("http://localhost:9200"));
ConnectionSettings esSettings = new ConnectionSettings(esPool);
esSettings.DefaultIndex("people");
Nest.ElasticClient esClient = new ElasticClient(esSettings);

esClient.DeleteIndex("people");
esClient.Index<Teacher>(myTeacher);
esClient.Index<Firefighter>(myFiregighter);

System.Threading.Thread.Sleep(2000);

ISearchResponse<Person> response = esClient.Search<Person>(s => s
.AllTypes()
.MatchAll()
);

foreach (Person person in response.Documents)
Console.WriteLine(person);
}

public class Person
{
public string id { get; set; }
public string firstName { get; set; }
public string lastName { get; set; }
public override string ToString() { return String.Format("{0}, {1}", lastName, firstName);}
}
public class Firefighter : Person
{
public int helmetSize { get; set; }
}
public class Teacher : Person {
public int gradeNumber { get; set; }
}
}
}

数据在 Elasticsearch 中的结构似乎正确:

{
took: 1,
timed_out: false,
_shards: {
total: 5,
successful: 5,
failed: 0
},
hits: {
total: 2,
max_score: 1,
hits: [{
_index: "people",
_type: "firefighter",
_id: "2",
_score: 1,
_source: {
helmetSize: 12,
id: "2",
firstName: "Frank",
lastName: "TheFirefighter"
}
}, {
_index: "people",
_type: "teacher",
_id: "1",
_score: 1,
_source: {
gradeNumber: 8,
id: "1",
firstName: "Steve",
lastName: "TheTeacher"
}
}]
}
}

如何让 NEST 返回从基类派生的实例的混合列表?

非常感谢!

-Z

最佳答案

NEST supports Covariant results在 NEST 2.x 中,方法的命名在 ISearchResponse<T> 上改为.Type()在向 Elasticsearch 发出请求时与它在 URI 中表示的路由参数对齐(.Type() 可以是一种或多种类型)。

NEST 2.x 的协变结果示例是

static void Main(string[] args)
{
var myTeacher = new Teacher { id = "1", firstName = "Steve", lastName = "TheTeacher", gradeNumber = 8 };
var myFiregighter = new Firefighter { id = "2", firstName = "Frank", lastName = "TheFirefighter", helmetSize = 12 };

SingleNodeConnectionPool esPool = new SingleNodeConnectionPool(new Uri("http://localhost:9200"));
ConnectionSettings esSettings = new ConnectionSettings(esPool);
esSettings.DefaultIndex("people");
Nest.ElasticClient esClient = new ElasticClient(esSettings);

if (esClient.IndexExists("people").Exists)
{
esClient.DeleteIndex("people");
}

esClient.Index<Teacher>(myTeacher, i => i.Refresh());
esClient.Index<Firefighter>(myFiregighter, i => i.Refresh());

// perform the search using the base type i.e. Person
ISearchResponse<Person> response = esClient.Search<Person>(s => s
// Use .Type to specify the derived types that we expect to return
.Type(Types.Type(typeof(Teacher), typeof(Firefighter)))
.MatchAll()
);

foreach (Person person in response.Documents)
Console.WriteLine(person);
}

public class Person
{
public string id { get; set; }
public string firstName { get; set; }
public string lastName { get; set; }
public override string ToString() { return String.Format("{0}, {1}", lastName, firstName); }
}
public class Firefighter : Person
{
public int helmetSize { get; set; }
}
public class Teacher : Person
{
public int gradeNumber { get; set; }
}

关于c# - 使用 NEST 和 .NET 从 Elasticsearch 返回多个派生类实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35994649/

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