bchavez / RethinkDb.Driver

:headphones: A NoSQL C#/.NET RethinkDB database driver with 100% ReQL API coverage.
http://rethinkdb.com/api/java
Other
383 stars 134 forks source link

Support for System.Text.Json.JsonDocument #148

Open oliverjanik opened 4 years ago

oliverjanik commented 4 years ago

AspNetCore 3.0 dropped JSON.NET out of the box and replaced it with much more lightweight JsonDocument and JsonSerialiser

It seems this will be the official way to handle JSON for .NET going forward. It's still a bit rough, but I think it's worth investigating for this project.

As as example Npgsql has included direct JsonDocument support for the Postgres jsonb column out of the box recently.