gpt4 book ai didi

c# - 如何强制 NEST 使用属性映射

转载 作者:太空宇宙 更新时间:2023-11-03 23:11:09 24 4
gpt4 key购买 nike

好吧,如果这是一个愚蠢的问题,我很抱歉,但我花了一天时间浏览文档并尝试了 3 个不同的 NEST 版本,最终结果是一样的。

基本上当我使用 Elasticsearch 的 REST api 为一个类型创建映射时,我可以在我的映射上使用 GET 请求并且我收到我想要的东西:

"properties": {
"date": {
"type": "date",
"format": "basic_date"
},
"id": {
"type": "long",
"index": "no"
},
"name": {
"type": "string"
},
"slug": {
"type": "string",
"index": "no"
}
}

但是,如果我从头开始,并在 c# 中使用以下类:

[Number(Index = NonStringIndexOption.No)]
public long Id { get; set; }
[String(Name = "name")]
public string Name { get; set; }
[String(Name = "slug", Index = FieldIndexOption.No)]
public string Slug { get; set; }
[Date(Format = "dd-MM-yyyy", Index = NonStringIndexOption.No)]
public DateTime Date { get; set; }

并这样创建和填充索引:

node = new Uri("http://localhost:9200");
settings = new ConnectionSettings(node);
settings.DefaultIndex("searchable-items");
//retrieve stuff from relational db
client.IndexMany(allItemsRetrievedFromRelDb);

我的类型默认为以下(基本上忽略所有属性值,除了 Name=)

"date": {
"type": "date",
"format": "strict_date_optional_time||epoch_millis"
},
"id": {
"type": "long"
},
"name": {
"type": "string"
},
"slug": {
"type": "string"
}

基本上我希望实现的是:

  1. “basic_date”类型的日期格式
  2. 只应分析和搜索“姓名”
  3. 最终,“名称”的自定义分析器

我的问题是 - 我做错了什么,为什么 NEST 无视我在属性中输入的内容?当前代码是 v2.4.4,尽管我也尝试了 5.0.0 预发布版(那里的语法略有不同,但结果相同)。

最佳答案

为了使属性映射生效,您需要在使用 .CreateIndex() 创建索引时或在创建索引之后和之前将映射告知 Elasticsearch您使用 .Map() 索引任何文档。

这里有一个例子来演示使用 NEST 2.4.4

void Main()
{
var pool = new SingleNodeConnectionPool(new Uri("http://localhost:9200"));
var defaultIndex = "searchable-items";
var connectionSettings = new ConnectionSettings(pool)
// specify the default index to use if
// 1. no index is specified on the request
// 2. no index can be inferred from the C# POCO type
.DefaultIndex(defaultIndex);;

var client = new ElasticClient(connectionSettings);

client.CreateIndex(defaultIndex, c => c
.Mappings(m => m
.Map<MyDocument>(mm => mm
// map MyDocument, letting
// NEST infer the mapping from the property types
// and attributes applied to them
.AutoMap()
)
)
);

var docs = new[] {
new MyDocument
{
Id = 1,
Name = "name 1",
Date = new DateTime(2016,08,26),
Slug = "/slug1"
},
new MyDocument
{
Id = 2,
Name = "name 2",
Date = new DateTime(2016,08,27),
Slug = "/slug2"
}
};

client.IndexMany(docs);
}

public class MyDocument
{
[Number(Index = NonStringIndexOption.No)]
public long Id { get; set; }
[String(Name = "name")]
public string Name { get; set; }
[String(Name = "slug", Index = FieldIndexOption.No)]
public string Slug { get; set; }
[Date(Format = "dd-MM-yyyy", Index = NonStringIndexOption.No)]
public DateTime Date { get; set; }
}

The Automapping documentation有关如何使用 the fluent API 控制 POCO 类型的映射的更多详细信息和 the visitor pattern (for applying conventions).

关于c# - 如何强制 NEST 使用属性映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39155880/

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