1

I want to prevent indexing Id field for search using Nest attributes.

[Number(type: NumberType.Long, IncludeInAll = false, Index = false)]
    public long Id { get; set; }

1 Answers1

1

Create mapping first.

_elasticClient .MapAsync<TEntitySearchModel>(m => m.AutoMap());