From a39e4baf79b2ebf6d534281aa1e3c48aa1047020 Mon Sep 17 00:00:00 2001 From: Wade Pickett Date: Wed, 5 Feb 2025 10:58:51 -0800 Subject: [PATCH] Typo fix: Update new-field.md Fixes #34643 --- aspnetcore/tutorials/razor-pages/new-field.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/razor-pages/new-field.md b/aspnetcore/tutorials/razor-pages/new-field.md index 90d1c80dee31..00088012e7eb 100644 --- a/aspnetcore/tutorials/razor-pages/new-field.md +++ b/aspnetcore/tutorials/razor-pages/new-field.md @@ -19,7 +19,7 @@ In this section [Entity Framework Core (EF Core)](/ef/core/get-started/aspnetcor * Add a new field to the model. * Migrate the new field schema change to the database. -The EF Core approach allows for a more agile development process. The developer works on the app's data model directly while the database schema is created and then syncronized, all without the developer having to switch contexts to and from a datbase management tool. For an overview of Entity Framework Core and its benefits, see [Entity Framework Core](/ef/core). +The EF Core approach allows for a more agile development process. The developer works on the app's data model directly while the database schema is created and then syncronized, all without the developer having to switch contexts to and from a database management tool. For an overview of Entity Framework Core and its benefits, see [Entity Framework Core](/ef/core). Using EF Code to automatically create and track a database: