From 1c9deacb6ab615ce251a886392690c8bf66f8c27 Mon Sep 17 00:00:00 2001 From: Thomas Claudius Huber Date: Wed, 25 Feb 2026 09:33:07 +0100 Subject: [PATCH 1/2] Fix wording in entity-types.md regarding mappings (#5277) --- entity-framework/core/modeling/entity-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/modeling/entity-types.md b/entity-framework/core/modeling/entity-types.md index 983370b689..a89541f7d5 100644 --- a/entity-framework/core/modeling/entity-types.md +++ b/entity-framework/core/modeling/entity-types.md @@ -92,7 +92,7 @@ Entity types can be mapped to database views using the Fluent API. [!code-csharp[Main](../../../samples/core/Modeling/EntityTypes/FluentAPI/ViewNameAndSchema.cs?name=ViewNameAndSchema&highlight=1)] - Mapping to a view will remove the default table mapping, but the entity type can also be mapped to a table explicitly. In this case the query mapping will be used for queries and the table mapping will be used for updates. + Mapping to a view will remove the default table mapping, but the entity type can also be mapped to a table explicitly. In this case the view mapping will be used for queries and the table mapping will be used for updates. > [!TIP] > To test keyless entity types mapped to views using the in-memory provider, map them to a query via . See the [in-memory provider docs](xref:core/testing/testing-without-the-database#in-memory-provider) for more information. From f30c06e81e16a5fbaf76aa939410500ba17564f4 Mon Sep 17 00:00:00 2001 From: Thomas Claudius Huber Date: Wed, 25 Feb 2026 10:44:09 +0100 Subject: [PATCH 2/2] Fix missing word in prerequisites section (#5276) --- entity-framework/core/managing-schemas/scaffolding/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/managing-schemas/scaffolding/index.md b/entity-framework/core/managing-schemas/scaffolding/index.md index 6cf14174c5..4ea02e0f0c 100644 --- a/entity-framework/core/managing-schemas/scaffolding/index.md +++ b/entity-framework/core/managing-schemas/scaffolding/index.md @@ -18,7 +18,7 @@ Reverse engineering is the process of scaffolding entity type classes and a [DbC ## Prerequisites -- Before scaffolding, you'll need to install either the [PMC tools](xref:core/cli/powershell), which work on Visual Studio only, or the [.NET CLI tools](xref:core/cli/dotnet), which across all platforms supported by .NET. +- Before scaffolding, you'll need to install either the [PMC tools](xref:core/cli/powershell), which work on Visual Studio only, or the [.NET CLI tools](xref:core/cli/dotnet), which work across all platforms supported by .NET. - Install the NuGet package for `Microsoft.EntityFrameworkCore.Design` in the project you are scaffolding to. - Install the NuGet package for the [database provider](xref:core/providers/index) that targets the database schema you want to scaffold from.