diff --git a/entity-framework/core/what-is-new/ef-core-3.x/breaking-changes.md b/entity-framework/core/what-is-new/ef-core-3.x/breaking-changes.md index 44273b54a7..7360eee164 100644 --- a/entity-framework/core/what-is-new/ef-core-3.x/breaking-changes.md +++ b/entity-framework/core/what-is-new/ef-core-3.x/breaking-changes.md @@ -494,7 +494,7 @@ The following parts of the API are now obsolete: This would still not be configured by convention to avoid misconfiguration when a primary key is expected, but doesn't match the convention. * **`DbQuery<>`** - Instead `DbSet<>` should be used. * **`DbContext.Query<>()`** - Instead `DbContext.Set<>()` should be used. -* **`IQueryTypeConfiguration`** - Instead `IEntityTypeConfiguration`** should be used. +* **`IQueryTypeConfiguration`** - Instead `IEntityTypeConfiguration` should be used. > [!NOTE] > Due to [an issue in 3.x](https://github.com/dotnet/efcore/issues/19537) when querying keyless entities that have all properties set to `null` a `null` will be returned instead of an entity, if this issue is applicable to your scenario also add logic to handle `null` in results.