An open API service indexing awesome lists of open source software.

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

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)