EntityFrameworkCore.ClickHouse icon indicating copy to clipboard operation
EntityFrameworkCore.ClickHouse copied to clipboard

ClickHouse provider for Entity Framework Core.

Results 17 EntityFrameworkCore.ClickHouse issues
Sort by recently updated
recently updated
newest added

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 ![image](https://github.com/user-attachments/assets/af355628-615f-4d85-a856-46d8d1e370ad) ![image](https://github.com/user-attachments/assets/29793486-3d52-4971-80b4-4653ab5dd741)

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...