EntityFrameworkCore.ClickHouse
EntityFrameworkCore.ClickHouse copied to clipboard
ClickHouse provider for Entity Framework Core.
I'm trying to store the following field: `public required Tuple[] EventTimesAndImpacts { get; set; }` `TimeOnly` is .NET's `TimeOnly`. `EventImpact` is my enum. Attempting to interact with the database (in...
Hello! I've encountered an issue that every time when I update entity using this provider, `SaveChangesAsync` throws the following exception: ``` Unhandled exception. Microsoft.EntityFrameworkCore.DbUpdateConcurrencyException: The database operation was expected to...
After migrate from net8 to net9 I get the following error  
Clickhouse has introduced the variant data type https://clickhouse.com/docs/en/sql-reference/data-types/variant. The clickhouse driver for c# already supports it https://github.com/DarkWanderer/ClickHouse.Client/pull/436. This works with dapper using the object or dynamic c# types, but does...
Is it possible to add the `onCluster()` method to perform some operations on a specific cluster? Or it already exists?
I had successfull scaffold model by EntityFrameworkCore.ClickHouse package and I use this code to get data from my clickhouse database ``` [HttpGet] public async Task GetUsers() { return await _context.Users.OrderBy(u...