[Feature] System.Text.Json support
See original GitHub issueFeature request:
Support System.Text.Json
writers.
More details:
Currently NEST supports Json.Net serializers. Microsoft has added a Json library to .net core 3 and a nuget package for other frameworks.
Will it be possible to use custom writers that supports System.Text.Json
with NEST - I know you made a great effort to remove the JSON.net dependency, I hope this is a step forward in that aspect…
https://devblogs.microsoft.com/dotnet/try-the-new-system-text-json-apis/
Issue Analytics
- State:
- Created 4 years ago
- Comments:20 (9 by maintainers)
Top Results From Across the Web
Migrate from Newtonsoft.Json to System.Text.Json - .NET
The System.Text.Json namespace provides functionality for serializing to and deserializing from JavaScript Object Notation (JSON). The System.
Read more >Serialize and deserialize JSON using C# - .NET
The System.Text.Json library design emphasizes high performance and low memory allocation over an extensive feature set. Built-in UTF-8 support ...
Read more >Seven System.Text.Json features in the .NET 6
In .NET 6, System.Text.Json supports IAsyncEnumerable. The serialization of IAsyncEnumerable transforms it into an array.
Read more >Introduction to System.Text.Json Through Examples
System.Text.Json library helps us handle JSON in ASP.NET applications. It comes integrated with the framework and it's simple and easy to ...
Read more >System.Text.Json support to System.Runtime.Serialization
NET Standard and it allows us to annotate members of a class in a way to hint a serialization library what name to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
We have switched to
System.Text.Json
for8.0.0-alpha.1
as the default fore request/response and source serialization.Yea, I saw the custom serialized code, with the extra two jsonconverters and copied them to my protect, I agree, it’s not a lot of code, but also not a few simple lines. Since this code will be in my protect I need to fully understand it, which at this point in time I don’t… Thanks for the super fast response and detailed explanation! Keep up the good work!