From 4ab4af6ef7610c7eb3a3a908b658803aeee4c735 Mon Sep 17 00:00:00 2001 From: Ryan Taite Date: Fri, 20 Jul 2018 19:14:22 +0000 Subject: [PATCH] Highlight one more line This line originally generated is `public IList Instructor { get;set; }` and gets changed to `public InstructorIndexData Instructor { get; set; }` so it's worth highlighting, I feel --- aspnetcore/data/ef-rp/read-related-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/data/ef-rp/read-related-data.md b/aspnetcore/data/ef-rp/read-related-data.md index 30586e3649..2e8355f9d8 100644 --- a/aspnetcore/data/ef-rp/read-related-data.md +++ b/aspnetcore/data/ef-rp/read-related-data.md @@ -163,7 +163,7 @@ Run the app and navigate to the instructors page. Replace *Pages/Instructors/Index.cshtml.cs* with the following code: -[!code-csharp[](intro/samples/cu/Pages/Instructors/Index1.cshtml.cs?name=snippet_all&highlight=2,20-99)] +[!code-csharp[](intro/samples/cu/Pages/Instructors/Index1.cshtml.cs?name=snippet_all&highlight=2,19-99)] The `OnGetAsync` method accepts optional route data for the ID of the selected instructor.