我有一个用
插入弹性搜索数据库的类型public class Capture
{
public Guid Id { get; set; }
...
[ElasticProperty(Type = FieldType.Nested)]
public IList<CustomerInformation> CustomerInformations { get; set; }
}
然而,当我做
时var mapping=client.GetMapping<Capture>(o => o.Index("captures").Type("capture"));
customerinformations属性的映射仍然是对象而不是嵌套。为什么是这样?我甚至删除了索引并重新创建它并且没有解决任何问题。