它应该在Hits[i].Version
中,但是当我查看ISearchResponse
时,它总是为空。
我还在.EnableMetrics
对象上设置ConnectionSettings
但没有运气,因为版本始终为空。
我已经仔细检查过ElasticSearch,文档版本正在增加。
有没有人成功设法查看文档版本请使用Nest?
答案 0 :(得分:3)
[Test]
public void WithVersion()
{
var queryResults = this.Client.Search<ElasticsearchProject>(s=>s
.Version()
.MatchAll()
);
Assert.True(queryResults.IsValid);
Assert.Greater(queryResults.Total, 0);
Assert.True(queryResults.Hits.All(h => !h.Version.IsNullOrEmpty()));
}