CH.Native.Dapper 1.2.0

dotnet add package CH.Native.Dapper --version 1.2.0
                    
NuGet\Install-Package CH.Native.Dapper -Version 1.2.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CH.Native.Dapper" Version="1.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CH.Native.Dapper" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="CH.Native.Dapper" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CH.Native.Dapper --version 1.2.0
                    
#r "nuget: CH.Native.Dapper, 1.2.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CH.Native.Dapper@1.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CH.Native.Dapper&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=CH.Native.Dapper&version=1.2.0
                    
Install as a Cake Tool

CH.Native.Dapper

Dapper integration for CH.Native, the high-performance .NET client for ClickHouse using the native binary TCP protocol.

This package does two things: it makes the familiar Dapper query methods faster against ClickHouse, and it makes array parameters bind correctly.

Install

dotnet add package CH.Native.Dapper

Faster queries, same call shape

QueryAsync<T> and friends are extended on ClickHouseConnection and route through CH.Native's typed-accessor read path rather than Dapper's compiled row mapper. That skips the per-value boxing Dapper pays for value-type columns — typically 30-40% lower allocations on large reads — with no change at the call site:

using CH.Native.Connection;
using CH.Native.Dapper;

await using var connection = new ClickHouseConnection("Host=localhost;Database=default");
await connection.OpenAsync();

var users = await connection.QueryAsync<User>("SELECT id, name, age FROM users");

Available: QueryAsync<T>, QueryFirstAsync<T>, QueryFirstOrDefaultAsync<T>, QuerySingleAsync<T>, QuerySingleOrDefaultAsync<T>.

Which overload runs? C# picks the more-derived receiver, so a variable typed as ClickHouseConnection gets the fast path and anything typed as IDbConnection/DbConnection falls through to Dapper's classic path. Row-shaped methods are deliberately not extended on IDbConnection, so using Dapper; and using CH.Native.Dapper; can coexist in the same file without ambiguity. If your DI container only hands out IDbConnection, assign to a concrete local first to become fast-path-eligible:

ClickHouseConnection ch = await dataSource.OpenConnectionAsync();
var rows = await ch.QueryAsync<User>(sql);   // fast path

Execute-style methods (ExecuteAsync, ExecuteScalarAsync, and the sync variants) are thin pass-throughs to Dapper, provided so a lone using CH.Native.Dapper; still binds them. QueryMultipleAsync throws NotSupportedException — ClickHouse has no multiple-result-set concept, so failing at the call site beats an opaque server-side syntax error.

Array parameters

By default, Dapper expands array parameters (int[], string[], etc.) into SQL tuples — fine for most databases, wrong for ClickHouse, where you usually want them bound as Array(T) on the wire. This package registers Dapper type handlers that send arrays as native ClickHouse arrays.

Call Register() once during startup:

using CH.Native.Dapper;

ClickHouseDapperIntegration.Register();

Then use array parameters as you would expect:

var ids = new[] { 1, 2, 3, 4, 5 };
var rows = await connection.QueryAsync<MyRow>(
    "SELECT * FROM events WHERE id IN (SELECT arrayJoin(@ids))",
    new { ids });

Without this package, Dapper would rewrite @ids into (@ids1, @ids2, ...). With it, @ids is sent as a single Array(Int32) parameter.

Registered types

bool[], sbyte[], short[], int[], long[], byte[], ushort[], uint[], ulong[], float[], double[], decimal[], string[], Guid[], DateTime[], DateTimeOffset[], DateOnly[].

Register() is idempotent — repeated calls are no-ops.

License

Apache-2.0

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.0 97 7/28/2026
1.2.0-prerelease.47 50 7/28/2026
1.2.0-prerelease.46 51 7/28/2026
1.2.0-prerelease.45 48 7/28/2026
1.2.0-prerelease.44 52 7/28/2026
1.2.0-prerelease.43 66 7/9/2026
1.2.0-prerelease.42 61 6/29/2026
1.2.0-prerelease.40 67 6/27/2026
1.2.0-prerelease.39 88 6/24/2026
1.2.0-prerelease.38 66 6/23/2026
1.2.0-prerelease.37 65 6/22/2026
1.1.2-prerelease.36 83 6/21/2026
1.1.2-prerelease.34 68 6/20/2026
1.1.2-prerelease.33 62 5/30/2026
1.1.2-prerelease.32 65 5/30/2026
1.1.2-prerelease.31 69 5/20/2026
1.1.2-prerelease.30 59 5/18/2026
1.1.2-prerelease.29 76 5/17/2026
1.1.2-prerelease.28 55 5/17/2026
1.1.2-prerelease.27 63 5/17/2026
Loading failed