{"id":31124228,"url":"https://github.com/elky84/jsontable","last_synced_at":"2026-05-06T03:33:12.208Z","repository":{"id":95460451,"uuid":"444741235","full_name":"elky84/JsonTable","owner":"elky84","description":"JSON mapping to C# container.","archived":false,"fork":false,"pushed_at":"2025-02-16T07:32:08.000Z","size":69,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-17T20:02:55.827Z","etag":null,"topics":["csharp","dotnet","json","nuget"],"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/elky84.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2022-01-05T09:25:32.000Z","updated_at":"2025-02-16T07:32:12.000Z","dependencies_parsed_at":"2024-03-25T15:33:45.261Z","dependency_job_id":"c90233b8-b863-4474-b361-cac87f105319","html_url":"https://github.com/elky84/JsonTable","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/elky84/JsonTable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elky84%2FJsonTable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elky84%2FJsonTable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elky84%2FJsonTable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elky84%2FJsonTable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elky84","download_url":"https://codeload.github.com/elky84/JsonTable/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elky84%2FJsonTable/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32677928,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T02:33:58.958Z","status":"ssl_error","status_checked_at":"2026-05-06T02:33:39.611Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["csharp","dotnet","json","nuget"],"created_at":"2025-09-17T19:38:57.653Z","updated_at":"2026-05-06T03:33:12.200Z","avatar_url":"https://github.com/elky84.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Website](https://img.shields.io/website-up-down-green-red/http/shields.io.svg?label=elky-essay)](https://elky84.github.io)\n![Made with](https://img.shields.io/badge/made%20with-.NET8-blue.svg)\n![Made with](https://img.shields.io/badge/made%20with-Unity3D-black.svg)\n\n[![Publish Nuget Github Package](https://github.com/elky84/JsonTable/actions/workflows/publish_github.yml/badge.svg)](https://github.com/elky84/JsonTable/actions/workflows/publish_github.yml)\n[![Publish Nuget Package](https://github.com/elky84/JsonTable/actions/workflows/publish_nuget.yml/badge.svg)](https://github.com/elky84/JsonTable/actions/workflows/publish_nuget.yml)\n\n![GitHub forks](https://img.shields.io/github/forks/elky84/JsonTable.svg?style=social\u0026label=Fork)\n![GitHub stars](https://img.shields.io/github/stars/elky84/JsonTable.svg?style=social\u0026label=Stars)\n![GitHub watchers](https://img.shields.io/github/watchers/elky84/JsonTable.svg?style=social\u0026label=Watch)\n![GitHub followers](https://img.shields.io/github/followers/elky84.svg?style=social\u0026label=Follow)\n\n![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)\n![GitHub repo size in bytes](https://img.shields.io/github/repo-size/elky84/JsonTable.svg)\n![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/elky84/JsonTable.svg)\n\n# JsonTable\n\n## introduce\n\nEasily usable Json to Table (dictionary and mores).\n\nUse Newtonsoft.json.\n\n## usage\n\n### definition\n\n```csharp\n[Table(@\"json\")]\npublic partial class TableItem : BaseDict\u003cstring, Item\u003e\n{\n}\n```\n\n### load\n\n```csharp\nMasterTable.Load(\"ItemGenerator.Table\");\n```\n\n### use\n\n```csharp\nvar data = MasterTable.From\u003cTableItem\u003e();\n```\n\n```csharp\nMasterTable.From\u003cTableItem\u003e().FirstOrDefault(x =\u003e x.Id == id);\n```\n\n## Support Types\n\n* BaseList\n  * `List\u003cT\u003e`\n* BaseDict\n  * `Dictionary\u003cK, T\u003e`\n* BaseMultiDict\n  * `Dictionary\u003cK, List\u003cT\u003e\u003e`\n  * Similar C++ stl Multimap\n    * Example\n    ```csharp\n    [Table(@\"json\")]\n    public partial class TableItemByType : BaseMultiDict\u003cItemType, Item\u003e\n    {\n        public TableItemByType() : base(\"Type\") // input key property name\n        {\n        }\n    }\n    ```\n\n## Reference\n\n[Cli](https://github.com/elky84/JsonTable/Cli/Program.cs)\n\n## Version History\n\n### v1.0.15\n\nBaseMultiDict supply Composite Key.\n\n### v1.0.14\n\nModified the Load function interface behavior to allow loading from multiple assemblies.\n\n### v1.0.13\n\nRemove nullable return of MasterTable and return an exception when requesting an invalid type.\n\n### v1.0.12\n\nAdded Json load optional method. (virtual interface, for Unity3D)\n\n### v1.0.11\n\nAdded Container methods (get internal container)\n\n### v1.0.10\n\nAdded Clone methods\n\n### v1.0.9\n\nTargetFramework to netstandard2.1\n\n### v1.0.8\n\nFixed Nullable rule.\n\n### v1.0.7\n\nLoad from Binary path. (Full Path)\n\n### v1.0.6\n\nException process reinforcement.\n\n### v1.0.5\nFeatures added MultiDict. (like c++ stl multimap)\n\n### v1.0.4\nSupports OnLoad() function to set configuration rules when container is loaded.\n\n### v1.0.3\nTables now only require a folder path. (The full path is not required.) \n\n### v1.0.1\nremoved nullable property on container (BaseDict and BaseList).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felky84%2Fjsontable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felky84%2Fjsontable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felky84%2Fjsontable/lists"}