ClickHouse.Facades
1.0.6
See the version list below for details.
dotnet add package ClickHouse.Facades --version 1.0.6
NuGet\Install-Package ClickHouse.Facades -Version 1.0.6
<PackageReference Include="ClickHouse.Facades" Version="1.0.6" />
<PackageVersion Include="ClickHouse.Facades" Version="1.0.6" />
<PackageReference Include="ClickHouse.Facades" />
paket add ClickHouse.Facades --version 1.0.6
#r "nuget: ClickHouse.Facades, 1.0.6"
#addin nuget:?package=ClickHouse.Facades&version=1.0.6
#tool nuget:?package=ClickHouse.Facades&version=1.0.6
ClickHouse.Facades
Raw SQL migrations and contexts for ClickHouse referencing ClickHouse.Client
Key Features
- Migrations: allows you to perform raw SQL migrations on your ClickHouse database.
- Rollback support
- Fully async contract
- Contexts: provides a way to work with ClickHouse contexts, allowing you to organize your database operations in a structured manner.
- Per context migrations, allowing separate migration management for distinct packages or components
- Parametrized queries (anonyomous type parameters supported)
- Provides all the features of the ClickHouse.Client package
- Fully async contract
- Testing toolkit: seamlessly integrate unit testing into your ClickHouse.Facades components using the dedicated ClickHouse.Facades.Testing package. Test ClickHouse contexts and facades effectively, mock facades or specific database requests, and monitor interactions with the ClickHouse database using the provided testing tools.
Migrations Usage
Implement IClickHouseMigrationInstructions
and IClickHouseMigrationsLocator
(example)
and register them as DI services
services.AddClickHouseMigrations<ClickHouseMigrationInstructions, ClickHouseMigrationsLocator>();
You can request IClickHouseMigrator
service or use IServiceProviderExtensions
to manage migrations
await serviceProvider.ClickHouseMigrateAsync();
Add Migrations
Add ClickHouseMigration
inheritor with ClickHouseMigration
attribute
[ClickHouseMigration(202310240941, "ExampleMigration")]
public class ExampleMigration : ClickHouseMigration
{
protected override void Up(ClickHouseMigrationBuilder migrationBuilder)
{
// migrationBuilder.AddRawSqlStatement("create table if not exists ...")
}
protected override void Down(ClickHouseMigrationBuilder migrationBuilder)
{
// migrationBuilder.AddRawSqlStatement("drop table if exists ...")
}
}
The index of ClickHouseMigrationAttribute
is used to order migrations. It's best to always use idempotent statements (for example with if [not] exists
) since migration may fail.
Context Usage
Implement the following class inheritors: ClickHouseContext<TContext>
, ClickHouseContextFactory<TContext>
, ClickHouseFacade<TContext>
(example)
and register them as DI services
services.AddClickHouseContext<ExampleContext, ExampleContextFactory>(builder => builder
.AddFacade<UsersFacade>()
.AddFacade<OrdersFacade>());
Request IClickHouseContextFactory<TContext>
service to create context
await using var context = contextFactory.CreateContext();
var ordersFacade = context.GetFacade<OrdersFacade>();
await ordersFacade.GetOrders();
You can create as many contexts as you need with any number of facades. Facades are built via DI and are stateful within context lifetime.
Note: You can perform migrations on your ClickHouse database without the necessity of implementing contexts.
Documentation
Documentation will be presented in repository Wiki (WIP)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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 was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- ClickHouse.Client (>= 7.2.1)
- System.Linq.Async (>= 6.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ClickHouse.Facades:
Package | Downloads |
---|---|
ClickHouse.Facades.Testing
Provides tools for unit testing ClickHouse.Facades components |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.5.9 | 542 | 3/25/2025 |
2.5.8 | 219 | 3/12/2025 |
2.5.7 | 187 | 3/9/2025 |
2.5.6 | 130 | 2/25/2025 |
2.5.5 | 125 | 1/27/2025 |
2.5.4 | 184 | 11/21/2024 |
2.5.3 | 222 | 10/14/2024 |
2.5.2 | 874 | 9/24/2024 |
2.5.1 | 153 | 8/29/2024 |
2.4.2 | 148 | 8/27/2024 |
2.4.1 | 98 | 8/5/2024 |
2.3.1 | 130 | 7/19/2024 |
2.2.2 | 280 | 7/15/2024 |
2.2.1 | 166 | 6/18/2024 |
2.1.3 | 163 | 6/17/2024 |
2.1.2 | 153 | 6/14/2024 |
2.1.1 | 141 | 6/6/2024 |
2.0.1 | 150 | 6/4/2024 |
1.2.1 | 179 | 6/2/2024 |
1.1.2 | 156 | 5/19/2024 |
1.1.1 | 129 | 5/14/2024 |
1.0.8 | 174 | 4/18/2024 |
1.0.7 | 160 | 4/17/2024 |
1.0.6 | 165 | 3/26/2024 |
1.0.5 | 157 | 3/21/2024 |
1.0.4 | 193 | 2/22/2024 |
1.0.3 | 163 | 2/5/2024 |
1.0.2 | 279 | 11/2/2023 |
1.0.1 | 165 | 11/2/2023 |
1.0.0 | 143 | 10/26/2023 |