Florian Bernd
Florian Bernd
Thanks for reporting! Seems like we forgot to pass custom `JsonWriterOptions` to the `Utf8JsonWriter` constructor.
@niemyjski NEST will be end of life at the end of this year and currently has very low priority in general. There is that much higher priority stuff on the...
@DR9885 I'm not sure if the proposed behavior is desirable in all cases (maybe somebody explicitly wants to query documents with `null` fields). Regarding the workaround: You have to make...
@nuzolx Steve is no longer maintaining this project. I am the new maintainer and so far this is not on my roadmap. I can see how this feature is nice...
I can definitely see how this improves readability and reduces code complexity. However I can as well see how this might be very unexpected and confusing behavior for new users....
The descriptor looks fine and a minimalistic test provides the correct results: ```csharp var client = new ElasticsearchClient(); var desc = new CompletionPropertyDescriptor() .Analyzer("viaSuggestAnalyzer") .Contexts(x => x .Type("typ") .Name("test")); var...
I was able to reproduce the issue now, but it requires a rather complex change in the code generator. Leaving this open until I have time to work on it...
Hi @braveyp @ashitanojoe, I'm very sorry about the wrong syntax example I've provided. The correct syntax is as follows: ```csharp var response = await client.SearchAsync(r => r .Index("person") .Query(q =>...
Hi, thanks for reporting. Based on the request payload, it seems like the second action is serialized but the first one is missing.
Hi @plibauer, it seems like this is not an issue in the library. It works fine in 8.13.7, if you change the call like this: ```csharp var updResp = await...