我正在学习elasticsearch+nest,我想将一个类型映射到一个网络类:
[ElasticType(Name="car")]
public class Car {}
{
[ElasticProperty(Name = "color", Index = FieldIndexOption.NotAnalyzed, Type = FieldType.String)]
public string Color { get; set; }
}
但代码不编译 ElasticType 和 ElasticProperty 都不可用。
我从 nuget 引用了 nest.dll 2.1.1 和 Elasticsearch.Net.dll 2.1.1。