Skip to content

Commit ea286af

Browse files
authored
Remove extra words (#23362)
1 parent 7b3e18f commit ea286af

File tree

1 file changed

+2
-2
lines changed
  • aspnetcore/tutorials/razor-pages

1 file changed

+2
-2
lines changed

aspnetcore/tutorials/razor-pages/model.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ The `update` command runs the `Up` method in migrations that have not been appli
615615

616616
### Examine the context registered with dependency injection
617617

618-
ASP.NET Core is built with [dependency injection](xref:fundamentals/dependency-injection). Services, such as the EF Core database context context, are registered with dependency injection during application startup. Components that require these services, such as Razor Pages, are provided these services via constructor parameters. The constructor code that gets a database context context instance is shown later in the tutorial.
618+
ASP.NET Core is built with [dependency injection](xref:fundamentals/dependency-injection). Services, such as the EF Core database context context, are registered with dependency injection during application startup. Components that require these services, such as Razor Pages, are provided via constructor parameters. The constructor code that gets a database context context instance is shown later in the tutorial.
619619

620620
The scaffolding tool automatically created a database context context and registered it with the dependency injection container.
621621

@@ -921,7 +921,7 @@ The `update` command runs the `Up` method in migrations that have not been appli
921921

922922
### Examine the context registered with dependency injection
923923

924-
ASP.NET Core is built with [dependency injection](xref:fundamentals/dependency-injection). Services, such as the EF Core database context, are registered with dependency injection during application startup. Components that require these services (such as Razor Pages) are provided these services via constructor parameters. The constructor code that gets a database context instance is shown later in the tutorial.
924+
ASP.NET Core is built with [dependency injection](xref:fundamentals/dependency-injection). Services, such as the EF Core database context, are registered with dependency injection during application startup. Components that require these services (such as Razor Pages) are provided via constructor parameters. The constructor code that gets a database context instance is shown later in the tutorial.
925925

926926
The scaffolding tool automatically created a database context and registered it with the dependency injection container. The following highlighted code is added to the *Program.cs* file by the scaffolder:
927927

0 commit comments

Comments
 (0)