NEST converts the first letter of the field name to lowercase??? See the code below. Why does NEST translate "SceneText" into "sceneText"?
var searchResponse = _EsClientDAL.Current.Search<DTO.RiAll>(s => s
.Query(q => q
.Match(m => m
.Field(f => f.SceneText)
.Query(queryString))
));
Valid NEST response built from a successful low level call on POST: /ri/RiAll/_search
Audit trail of this API call:
- [1] HealthyResponse: Node: http://localhost:9200/ Took: 00:00:00.1293725
Request:
{"query":{"match":{"sceneText":{"query":"hide"}}}}
Response:
{"took":2,"timed_out":false,"_shards":{"total":1,"successful":1,"failed":0},"hits":{"total":0,"max_score":null,"hits":[]}}