Skip to content

Commit 0846aaa

Browse files
Merge pull request #5234 from dotnet/main
Auto Publish – main to live - 2026-01-09 05:00 UTC
2 parents 116f2b5 + b78e017 commit 0846aaa

File tree

5 files changed

+4
-113
lines changed

5 files changed

+4
-113
lines changed

entity-framework/core/providers/provider-log.md

Lines changed: 0 additions & 104 deletions
This file was deleted.

entity-framework/core/providers/writing-a-provider.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,6 @@ The EF team produces "community standup" videos, where we discuss various aspect
2626
* [IQueryable, LINQ and the EF Core query pipeline](https://www.youtube.com/watch?v=1Ld3dtnTrMw&list=PLdo4fOcmZ0oX0ObHwBrJ0vJpZ7PiYMqeA)
2727
* [Model Building](https://www.youtube.com/watch?v=FYz0rAxQkC8&list=PLdo4fOcmZ0oX0ObHwBrJ0vJpZ7PiYMqeA)
2828

29-
## Keeping up-to-date with provider changes
30-
31-
Starting with work after the 2.1 release, we have created a [log of changes](xref:core/providers/provider-log) that may need corresponding changes in provider code. This is intended to help when updating an existing provider to work with a new version of EF Core.
32-
33-
Prior to 2.1, we used the [`providers-beware`](https://github.com/dotnet/efcore/labels/providers-beware) and [`providers-fyi`](https://github.com/dotnet/efcore/labels/providers-fyi) labels on our GitHub issues and pull requests for a similar purpose. We will continue to use these labels on issues to give an indication which work items in a given release may also require work to be done in providers. A `providers-beware` label typically means that the implementation of a work item may break providers, while a `providers-fyi` label typically means that providers will not be broken, but code may need to be changed anyway, for example, to enable new functionality.
34-
3529
## Suggested naming of third party providers
3630

3731
We suggest using the following naming for NuGet packages. This is consistent with the names of packages delivered by the EF Core team.

entity-framework/core/what-is-new/ef-core-11.0/provider-facing-changes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ uid: core/what-is-new/ef-core-11.0/provider-facing-changes
1010

1111
This page documents noteworthy changes in EF Core 11 which may affect EF providers; none of these should affect end-users of EF - this page is only meant for EF provider maintainers. The list is maintained on a best-effort basis, some changes may be missing.
1212

13+
## Changes
14+
15+
* Collation names are now quoted in SQL, like column and table names ([see #37462](https://github.com/dotnet/efcore/issues/37462)). If your database doesn't support collation name quoting, override `QuerySqlGenerator.VisitSql()` and `MigrationsSqlGenerator.ColumnDefinition()` to revert to the previous behavior, but it's recommended to implement some sort of restricted character validation.
16+
1317
## Test changes
1418

1519
* The inheritance specification tests have been reorganized into a folder of their own ([PR](https://github.com/dotnet/efcore/pull/37410)).

entity-framework/core/what-is-new/ef-core-3.x/breaking-changes.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ uid: core/what-is-new/ef-core-3.x/breaking-changes
99
# Breaking changes included in EF Core 3.x
1010

1111
The following API and behavior changes have the potential to break existing applications when upgrading them to 3.x.
12-
Changes that we expect to only impact database providers are documented under [provider changes](xref:core/providers/provider-log).
1312

1413
## Summary
1514

entity-framework/toc.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,8 +456,6 @@
456456
href: core/providers/in-memory/index.md
457457
- name: Write a database provider
458458
href: core/providers/writing-a-provider.md
459-
- name: Provider-impacting changes
460-
href: core/providers/provider-log.md
461459

462460
- name: Tools & extensions
463461
href: core/extensions/index.md

0 commit comments

Comments
 (0)