如何在弹性搜索中使用Nest创建特定属性的索引?

时间:2017-10-30 09:39:45

标签: c# .net nest

我希望在使用Nest Client的弹性搜索中将ID列作为索引。

public class Person
{
    public int Id { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
}

1 个答案:

答案 0 :(得分:0)

尝试以下方法:

[ElasticType(IdProperty = "Id", Name = "person")]    
public class Person
{
    public int Id { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
}