在Nest 6.x中找不到'ElasticProperty'

时间:2018-05-16 08:46:00

标签: .net elasticsearch nest

当尝试添加属性'ElasticProperty'时,我收到以下错误 - 找不到'ElasticProperty'。

[ElasticProperty(Analyzer = "some_string")]
public string Description { get; set; }

在一篇文档中,我读过“ElasticProperty”更改为“String”。但即使这样也行不通。

应该选择什么?

1 个答案:

答案 0 :(得分:0)

使用'文字'为我工作。

[Text(Analyzer = "some_string")]
public string Description { get; set; }