嵌套elasticsearch-嵌套属性具有不正确的映射

时间:2014-08-05 09:21:16

标签: elasticsearch nest

我有一个用

插入弹性搜索数据库的类型
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属性的映射仍然是对象而不是嵌套。为什么是这样?我甚至删除了索引并重新创建它并且没有解决任何问题。

0 个答案:

没有答案