Found 8 packages
Allows YamlDotNet to de/serialize System.Text.Json objects
Query JsonValue documents from F# using ad-hoc JsonPath queries.
Create altered copies of FSharp.Data.JsonProvider instances (JsonValue)
Lenses/Prisms/Traversals/etc. for FSharp.Data.JsonValue types
Use the Json Value Generator to generate basic json maker application
IsJson: context.Datas.Select(s => EF.Functions.IsJson(s.Name)).ToList(); JsonValue: _context.Datas.Where(w => EF.Functions.JsonValue(w.Fields, "Label") != null).ToList(); JsonQuery: var result = _context.Datas.Where(w => w.Id == entityId).Select(s => EF.Functions.JsonQuery(s.Field, "Details")).FirstOrDefault(); var details = JsonSerializer.Deserialize<List<Detail>>(result);
The JsonSchemaProvider provides F# types from JSON schemas. It can be used to build JSON values in a strongly typed way that conform to the schema or to parse JSON values into an F# value that can be queried in a stringly types way. Specifications like numeric ranges or string patterns that cannot be validated at compile time are checked at runtime. The JSON schema can either be given as an inline string literal or by a local file. The type provider is built around NJsonSchema for the schema parsing and validation and uses the JsonValue data type from FSharp.Data.
JsonPlaceholderReplacer is a NuGet manager designed to streamline the process of replacing placeholders in a target JSON string with actual values from a source JSON string. This tool is ideal for scenarios where configurations or data need to be dynamically populated.