JsonDocumentPath icon indicating copy to clipboard operation
JsonDocumentPath copied to clipboard

JsonDocumentPath is a class library to extract values from JSON (System.Text.Json.JsonDocument) with single line expressions (JsonPath)

Results 5 JsonDocumentPath issues
Sort by recently updated
recently updated
newest added

I would like this package to be strong name signed so that way my projects which requires strong name signing can build.

extend the response to JsonElementExt, including name and value. `{ "persons": [ { "name": "John", "age": 26 }, { "name": "Jane", "age": 2 } ] }` `var models = JsonDocument.Parse(json).RootElement;`...

Hi `var jsonPath = "$.my.path";` `var jsonDoc = JsonDocument.Parse(json);` `var element = jsonDoc.SelectElement(jsonPath); //returns JsonElement` `var elements = jsonDoc.SelectElements(jsonPath); //returns JsonElement.ArrayEnumerator` the elements only contain value, like `["hello", "good"], [0,...

Bumps System.Text.Json from 4.7.2 to 8.0.4. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=System.Text.Json&package-manager=nuget&previous-version=4.7.2&new-version=8.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies