From 8279d8b330dc4d8a5cd99efd85170d9518b7cfa1 Mon Sep 17 00:00:00 2001 From: Anas Ismail Khan Date: Tue, 23 Dec 2025 22:55:47 +0500 Subject: [PATCH 1/2] Added EFCore.Kusto (#5176) --- entity-framework/core/providers/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/entity-framework/core/providers/index.md b/entity-framework/core/providers/index.md index c7bfc56eee..ac7d696e6a 100644 --- a/entity-framework/core/providers/index.md +++ b/entity-framework/core/providers/index.md @@ -62,6 +62,7 @@ Entity Framework Core can access many different databases through plug-in librar | [EntityFrameworkCore.SqlServerCompact40](https://www.nuget.org/packages/EntityFrameworkCore.SqlServerCompact40) | SQL Server Compact 4.0 | [Erik Ejlskov Jensen](https://github.com/ErikEJ/) | .NET Framework | 2 | [wiki](https://github.com/ErikEJ/EntityFramework.SqlServerCompact/wiki/Using-EF-Core-with-SQL-Server-Compact-in-Traditional-.NET-Applications) | | [EntityFrameworkCore.OpenEdge](https://www.nuget.org/packages/EntityFrameworkCore.OpenEdge/) | Progress OpenEdge | [Alex Wiese](https://github.com/alexwiese) | | 2 | [readme](https://github.com/alexwiese/EntityFrameworkCore.OpenEdge/blob/master/README.md) | | [EFCore.Snowflake](https://www.nuget.org/packages/EFCore.Snowflake/) | Snowflake | [Krzysztof Sielaff](https://github.com/Sielnix) | | 8 | [readme](https://github.com/Sielnix/EFCore.Snowflake/blob/main/README.md) | +| [EFCore.Kusto](https://www.nuget.org/packages/EFCore.Kusto/) | Azure Data Explorer (Kusto) | [Anas Ismail Khan](https://github.com/anasik) | | 8 | [readme](https://github.com/anasik/EFCore.Kusto/blob/main/README.md) | | [EntityFrameworkCore.Ydb](https://www.nuget.org/packages/EntityFrameworkCore.Ydb) | YDB | [YDB Team](https://github.com/ydb-platform/) | | 9, 10 | [website](https://ydb.tech/docs/en/integrations/orm/entity-framework?version=main) | ## Adding a database provider to your application From 7e5ee6f520fbee92b7457249fb10588fb7ae16b6 Mon Sep 17 00:00:00 2001 From: adamijak Date: Tue, 23 Dec 2025 19:01:09 +0100 Subject: [PATCH 2/2] fix: replace == with = in variable assignment (#5211) --- entity-framework/core/querying/filters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/querying/filters.md b/entity-framework/core/querying/filters.md index f94af0cae6..75ddc4d792 100644 --- a/entity-framework/core/querying/filters.md +++ b/entity-framework/core/querying/filters.md @@ -142,7 +142,7 @@ If your query filter needs to access a tenant ID or similar contextual informati ```c# private sealed class CustomerEntityConfiguration : IEntityTypeConfiguration { - private readonly SomeDbContext _context == null!; + private readonly SomeDbContext _context = null!; public void Configure(EntityTypeBuilder builder) {