This is what ended up working.
var mappingSearchResponse = await _elasticClient.SearchAsync<Dictionary<string, object>>(s => s .Index(mappingIndexName) .Query(new Elastic.Clients.Elasticsearch.QueryDsl.MatchAllQuery())
);