Setup:
- Elasticsearch 7.2
- Elasticsearch.net 7.0.1
- Elasticsearch .NEST 7.0.1
Code:
var result = IndexClient.Search(s => s
.MinScore(minimumScore)
.From(skip)
.Size(take)
.Index(index)
.Query(q => searchQuery)
);
When executing and taking a look at the debug information, I can see the request is ok and also a result/document is returned. Looking at the at the result.Documents I get the same amount of documents returned, but the documents are empty (default values), like deserialization is gone wrong.
I'm comming from Elasticsearch 5.6, were all worked fine.
Any suggestions?