From 407baf7746f6798348ad5949553d7c5330e356d1 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Mon, 21 Jan 2019 13:01:02 -1000 Subject: [PATCH] Update model.md (#10529) --- aspnetcore/tutorials/razor-pages/model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/razor-pages/model.md b/aspnetcore/tutorials/razor-pages/model.md index 81ae092b0d..488e91bcf2 100644 --- a/aspnetcore/tutorials/razor-pages/model.md +++ b/aspnetcore/tutorials/razor-pages/model.md @@ -222,7 +222,7 @@ The `RazorPagesMovieContext` coordinates EF Core functionality (Create, Read, Up [!code-csharp[](~/tutorials/razor-pages/razor-pages-start/sample/RazorPagesMovie22/Data/RazorPagesMovieContext.cs)] -The preceding code creates a [DbSet/\](/dotnet/api/microsoft.entityframeworkcore.dbset-1) property for the entity set. In Entity Framework terminology, an entity set typically corresponds to a database table. An entity corresponds to a row in the table. +The preceding code creates a [`DbSet`](/dotnet/api/microsoft.entityframeworkcore.dbset-1) property for the entity set. In Entity Framework terminology, an entity set typically corresponds to a database table. An entity corresponds to a row in the table. The name of the connection string is passed in to the context by calling a method on a [DbContextOptions](/dotnet/api/microsoft.entityframeworkcore.dbcontextoptions) object. For local development, the [ASP.NET Core configuration system](xref:fundamentals/configuration/index) reads the connection string from the *appsettings.json* file.