Skip to content

Commit 9715bf8

Browse files
Merge pull request #5278 from dotnet/main
Auto Publish – main to live - 2026-02-25 11:00 UTC
2 parents 4e699d9 + f30c06e commit 9715bf8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

entity-framework/core/managing-schemas/scaffolding/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Reverse engineering is the process of scaffolding entity type classes and a [DbC
1818
1919
## Prerequisites
2020

21-
- 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.
21+
- 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.
2222
- Install the NuGet package for `Microsoft.EntityFrameworkCore.Design` in the project you are scaffolding to.
2323
- Install the NuGet package for the [database provider](xref:core/providers/index) that targets the database schema you want to scaffold from.
2424

entity-framework/core/modeling/entity-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Entity types can be mapped to database views using the Fluent API.
9292
9393
[!code-csharp[Main](../../../samples/core/Modeling/EntityTypes/FluentAPI/ViewNameAndSchema.cs?name=ViewNameAndSchema&highlight=1)]
9494

95-
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.
95+
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.
9696

9797
> [!TIP]
9898
> To test keyless entity types mapped to views using the in-memory provider, map them to a query via <xref:Microsoft.EntityFrameworkCore.InMemoryEntityTypeBuilderExtensions.ToInMemoryQuery*>. See the [in-memory provider docs](xref:core/testing/testing-without-the-database#in-memory-provider) for more information.

0 commit comments

Comments
 (0)