当尝试添加属性'ElasticProperty'时,我收到以下错误 - 找不到'ElasticProperty'。
[ElasticProperty(Analyzer = "some_string")]
public string Description { get; set; }
在一篇文档中,我读过“ElasticProperty”更改为“String”。但即使这样也行不通。
应该选择什么?
答案 0 :(得分:0)
使用'文字'为我工作。
[Text(Analyzer = "some_string")]
public string Description { get; set; }