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; }
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; }
Create mapping first.
_elasticClient .MapAsync<TEntitySearchModel>(m => m.AutoMap());