Closed as not planned
Description
Elastic.Clients.Elasticsearch version: 8.1.1
Elasticsearch version: 8.7.0
.NET runtime version: .NET 7.0.23
Operating system version: Windows 11
Description of the problem including expected versus actual behavior:
The SqlRowConverter
, which is located within the SqlRow
class (see here) overrides the method Write
from the JsonConverter
base class. However, this method is not implemented yet and hence always throws a NotImplementedException
. Thus, serializing the response will always lead to an exception. To fix this bug the Write
method should be correctly overwritten/implemented.
Maybe this issue is related to #7713.