Open JDBarndt opened 10 years ago
Hi, Thank's for this feedback.
The way to go is to change the class "SearchResult.cs". You will have to use the "JsonProperty" annotation. Here is an exemple on the getter/setter "hit"
[JsonProperty("hit")]
public Hits
In the same time you should add this "JsonProperty" on all the other getter/setter of the "SearchResult.cs" class.
Regards
When getting a SearchResult from a search, properties such as facetResults are available but hits are not. VB.NET sees "Hits hits" and "public class Hits" and can't distinguish between the two as VB.NET is case-insensitive. A solution would be to make "hits" and "Hits" two different names.