TortugaResearch / Tortuga.Chain

A fluent ORM for .NET
Other
336 stars 22 forks source link

ToJsonDocument Materializer and property support #203

Open Grauenwolf opened 7 years ago

Grauenwolf commented 7 years ago

This would be used with JSON columns, or string columns that contain JSON.

This would be part of a separate project, as JSON support involves dragging in NewtonSoft's JSON library. We should think about what other JSON features would be useful for the ORM.

Grauenwolf commented 5 years ago

Which JSON library would this use?

Grauenwolf commented 2 years ago

This will support a JsonDocument in the same way and places we support a XML Document.

Since System.Text.Json is a framework library, there is no cost for this extra dependency.

This will be a .NET 6 feature.

Grauenwolf commented 2 years ago

If we want to support JObject as well, that will have to be in a separate library.