{"id":19112235,"url":"https://github.com/21dimensions/csharp-client","last_synced_at":"2026-05-14T01:39:25.278Z","repository":{"id":40917897,"uuid":"151832429","full_name":"21dimensions/csharp-client","owner":"21dimensions","description":"Client for EasyEasy.io cloud database","archived":false,"fork":false,"pushed_at":"2022-12-08T01:32:03.000Z","size":12,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-27T19:25:55.037Z","etag":null,"topics":["cloud","database","databases","easyeasy","orm","orm-framework","storage"],"latest_commit_sha":null,"homepage":"http://easyeasy.io/","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/21dimensions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-10-06T11:17:14.000Z","updated_at":"2019-10-03T05:14:16.000Z","dependencies_parsed_at":"2023-01-24T11:15:50.220Z","dependency_job_id":null,"html_url":"https://github.com/21dimensions/csharp-client","commit_stats":null,"previous_names":["easyeasyio/csharp-client"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/21dimensions/csharp-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fcsharp-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fcsharp-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fcsharp-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fcsharp-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/21dimensions","download_url":"https://codeload.github.com/21dimensions/csharp-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fcsharp-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33006683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"last_error":"SSL_read: 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":["cloud","database","databases","easyeasy","orm","orm-framework","storage"],"created_at":"2024-11-09T04:32:15.226Z","updated_at":"2026-05-14T01:39:25.258Z","avatar_url":"https://github.com/21dimensions.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EasyEasy.Client\n\n## How to use\n\n### Install with Nuget\n```\nInstall-Package EasyEasy.Client\n```\n\n### Initialize\n\n```csharp YOUR_APP_KEY\nvar client = new Client(\"YOUR_APP_KEY\");\n```\n\n### Examples\n\n```csharp\n\nclass Cat\n{\n    // Id property is required\n\tpublic string Id { get; set; }\n\n\tpublic string Name { get; set; }\n\n\tpublic double Age { get; set; }\n\n\tpublic IEnumerable\u003cstring\u003e Interests { get; set; }\n}\n\n/////////////////\n\nvar cat = new Cat()\n\t{\n\t\tName = \"Sam\",\n\t\tAge = 1.5,\n\t\tInterests = new string[] { \"play\", \"eat\" }\n\t};\n\n// add new object\nvar id = await client.AddAsync(cat);\n\n// get object by id\ncat = await client.GetOne\u003cCat\u003e(id);\n\n// update\ncat.Age = 1.7;\nawait client.UpdateAsync(cat);\n\n// get filtered array of objects\nvar cats = await client.GetAsync\u003cCat\u003e(new { }); // return all cats\ncats = await client.GetAsync\u003cCat\u003e(new { age=1.5 }); // 1.5 years old cats\ncats = await client.GetAsync\u003cCat\u003e(new { age_gt=1.0 }); // cats older than 1 year\ncats = await client.GetAsync\u003cCat\u003e(new { name_like=\"Sa*\" }); // wildcard\n\n// paging\ncats = await client.GetAsync\u003cCat\u003e(new { _start = 10, _count = 10 });\n\n//Learn more about filtering operators at: http://easyeasy.io/docs#/operators\n\n//delete\nawait client.DeleteAsync\u003cCat\u003e(cat.Id)\n```\n\n# Licence\nISC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F21dimensions%2Fcsharp-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F21dimensions%2Fcsharp-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F21dimensions%2Fcsharp-client/lists"}