{"id":17033511,"url":"https://github.com/morgul/jdo","last_synced_at":"2026-04-30T08:39:53.979Z","repository":{"id":142042373,"uuid":"89970429","full_name":"Morgul/jdo","owner":"Morgul","description":"A small and lightweight library that provides a simple paradigm of working with JSON objects in .Net.","archived":false,"fork":false,"pushed_at":"2017-05-01T23:22:33.000Z","size":34,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-28T01:23:03.288Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Morgul.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"license.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-01T23:06:10.000Z","updated_at":"2019-10-15T22:25:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"7a5c8513-354d-4453-82df-73bbc69fbe7b","html_url":"https://github.com/Morgul/jdo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Morgul%2Fjdo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Morgul%2Fjdo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Morgul%2Fjdo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Morgul%2Fjdo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Morgul","download_url":"https://codeload.github.com/Morgul/jdo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245022238,"owners_count":20548504,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T08:35:02.882Z","updated_at":"2026-04-30T08:39:48.958Z","avatar_url":"https://github.com/Morgul.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Project Description\r\n\r\nJSON Dynamic Object (JDO) is a small and lightweight library that provides a simple paradigm of working with JSON objects in .Net. Everything is stored as a native type, and made easily accessible through member access notation and internally uses the JavaScriptSerializer Class.\r\n\r\n\r\n## JSON Dynamic Object\r\n\r\nAt it's heart, JDO is just a wrapper around {{ JavaScriptSerializer }}. It utilizes C# 4.0's {{ dynamic }} keyword, as well as the new {{ DynamicObject }} class to provide a simple to use wrapper class around JSON objects. Not only does it make deserializing JSON into native types simple, but it makes generating JSON much more like writing javascript than C# code.\r\n\r\nIt's easiest to understand JDO with a few basic examples:\r\n\r\n### Reading JSON\r\n```cs\r\nusing JDO;\r\n\r\ndynamic json = JSON.Deserialize(\"\\foo\"\\\":\\\"bar\\\",\\\"baz\\\":3\");\r\nConsole.WriteLine(\"foo is: {0}, baz is: {1}\", json.foo, json.baz);\r\n```\r\n\r\n### Creating JSON with accessor syntax\r\n```cs\r\nusing JDO;\r\nusing JDO.Dynamic;\r\n\r\n// Using accessor notation\r\ndynamic json = new DynObject();\r\njson.foo = \"bar\";\r\njson.baz = 3;\r\n\r\nConsole.WriteLine(\"json is: \\\"{0}\\\"\", JSON.Serialize(json));\r\n```\r\n\r\n### Creating JSON with Collection Initializer syntax\r\n```cs\r\nusing JDO;\r\nusing JDO.Dynamic;\r\n\r\n// Using Collection Initializer notation\r\ndynamic json = new DynObject {{\"foo\", \"bar\"}, {\"baz\", 3}};\r\n\r\nConsole.WriteLine(\"json is: \\\"{0}\\\"\", JSON.Serialize(json));\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorgul%2Fjdo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmorgul%2Fjdo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorgul%2Fjdo/lists"}