https://github.com/clickhouse/clickhouse-cs
Official .NET client for ClickHouse DB
https://github.com/clickhouse/clickhouse-cs
Last synced: 7 months ago
JSON representation
Official .NET client for ClickHouse DB
- Host: GitHub
- URL: https://github.com/clickhouse/clickhouse-cs
- Owner: ClickHouse
- License: mit
- Created: 2025-06-27T18:40:19.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-09-22T18:47:19.000Z (8 months ago)
- Last Synced: 2025-09-27T13:52:08.353Z (8 months ago)
- Language: C#
- Homepage:
- Size: 1.35 MB
- Stars: 31
- Watchers: 3
- Forks: 5
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ClickHouse.Driver
Official ADO.NET client for ClickHouse DB.
## Advantages
Compared to other existing .NET clients, `ClickHouse.Driver` has following advantages
* Does not have to buffer response, reducing memory usage
* Offers wider support for ClickHouse-specific types
* Is more compliant to ADO.NET standards (e.g. does not require calling 'NextResult' on `SELECT` queries)
* Works with ORM like Dapper, Linq2DB, Entity Framework Core etc.
## Acknowledgements
Originally created by [Oleg V. Kozlyuk](https://github.com/DarkWanderer)