如何防止索引字段?
How to prevent indexing field?
我想阻止索引 Id 字段以使用 Nest 属性进行搜索。
[Number(type: NumberType.Long, IncludeInAll = false, Index = false)]
public long Id { get; set; }
首先创建映射。
_elasticClient .MapAsync<TEntitySearchModel>(m => m.AutoMap());
我想阻止索引 Id 字段以使用 Nest 属性进行搜索。
[Number(type: NumberType.Long, IncludeInAll = false, Index = false)]
public long Id { get; set; }
首先创建映射。
_elasticClient .MapAsync<TEntitySearchModel>(m => m.AutoMap());