{"id":19385913,"url":"https://github.com/rqlite/rqlite-dotnet","last_synced_at":"2026-02-12T23:05:00.967Z","repository":{"id":41527809,"uuid":"456667041","full_name":"rqlite/rqlite-dotnet","owner":"rqlite","description":".NET client","archived":false,"fork":false,"pushed_at":"2025-04-21T19:05:43.000Z","size":61,"stargazers_count":29,"open_issues_count":2,"forks_count":6,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-21T20:24:07.785Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/rqlite.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,"zenodo":null}},"created_at":"2022-02-07T20:32:06.000Z","updated_at":"2025-04-21T19:05:40.000Z","dependencies_parsed_at":"2024-12-09T23:26:20.457Z","dependency_job_id":"0776270a-9f21-4fe5-90a5-668c7457b6a1","html_url":"https://github.com/rqlite/rqlite-dotnet","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rqlite%2Frqlite-dotnet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rqlite%2Frqlite-dotnet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rqlite%2Frqlite-dotnet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rqlite%2Frqlite-dotnet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rqlite","download_url":"https://codeload.github.com/rqlite/rqlite-dotnet/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250527199,"owners_count":21445325,"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-11-10T10:03:38.175Z","updated_at":"2026-02-12T23:05:00.939Z","avatar_url":"https://github.com/rqlite.png","language":"C#","funding_links":[],"categories":["Database Drivers"],"sub_categories":[],"readme":"# rqlite-dotnet\n[![Nuget (with prereleases)](https://img.shields.io/nuget/vpre/RqliteDotnet)](https://www.nuget.org/packages/RqliteDotnet/)\n![GitHub](https://img.shields.io/github/license/rqlite/rqlite-dotnet)\n![NuGet Downloads](https://img.shields.io/nuget/dt/RqliteDotnet)\n\n.NET client for rqlite - lightweight distributed database.\n\n## Features\nIt supports the following features through Data API:\n* Execute statements\n* Query data\n* Parametrized statements/queries\n\n## Example\n\n```csharp\nvar client = new RqliteClient(\"http://localhost:4001\"); //Assuming you have rqlite running on that port locally\nvar version = await client.Ping();\n\nvar queryResults = await client.Query(\"select * from foo\");\n\nvar executeResults = await client.Execute(\"insert into foo (name) values('test')\");\n```\n\nThere is also a basic ORM client similar to Dapper:\n```csharp\npublic class FooResultDto\n{\n    public int Id { get; set; }\n    public string Name { get; set; }\n}\n\nvar rqClient = new RqliteOrmClient(\"http://localhost:6000\");\n\nvar queryresults = await rqClient.Query\u003cFooResultDto\u003e(\"select * from foo\"); //Returns List\u003cFooResultDto\u003e\n```\nYou can see more examples in unit tests. NB: please report performance problems if any.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frqlite%2Frqlite-dotnet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frqlite%2Frqlite-dotnet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frqlite%2Frqlite-dotnet/lists"}