From 0026cec332806d5d606b07c522f9be5712ca710b Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Sat, 28 Sep 2019 06:52:34 -0500 Subject: [PATCH] Bookmark update (#14682) --- aspnetcore/data/ef-mvc/read-related-data.md | 4 ++-- aspnetcore/data/ef-rp/read-related-data.md | 6 +++--- aspnetcore/mvc/views/razor.md | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/aspnetcore/data/ef-mvc/read-related-data.md b/aspnetcore/data/ef-mvc/read-related-data.md index a28d615b53..457185e2d7 100644 --- a/aspnetcore/data/ef-mvc/read-related-data.md +++ b/aspnetcore/data/ef-mvc/read-related-data.md @@ -3,7 +3,7 @@ title: "Tutorial: Read related data - ASP.NET MVC with EF Core" description: "In this tutorial you'll read and display related data -- that is, data that the Entity Framework loads into navigation properties." author: tdykstra ms.author: riande -ms.date: 03/27/2019 +ms.date: 09/28/2019 ms.topic: tutorial uid: data/ef-mvc/read-related-data --- @@ -183,7 +183,7 @@ You've made the following changes to the existing code: } ``` -* Added a **Courses** column that displays courses taught by each instructor. For more information, see the [Explicit line transition with @:](xref:mvc/views/razor#explicit-line-transition-with-) section of the Razor syntax article. +* Added a **Courses** column that displays courses taught by each instructor. For more information, see the [Explicit line transition](xref:mvc/views/razor#explicit-line-transition) section of the Razor syntax article. * Added code that dynamically adds `class="success"` to the `tr` element of the selected instructor. This sets a background color for the selected row using a Bootstrap class. diff --git a/aspnetcore/data/ef-rp/read-related-data.md b/aspnetcore/data/ef-rp/read-related-data.md index 11dd542602..4c35193047 100644 --- a/aspnetcore/data/ef-rp/read-related-data.md +++ b/aspnetcore/data/ef-rp/read-related-data.md @@ -4,7 +4,7 @@ author: tdykstra description: In this tutorial you read and display related data -- that is, data that the Entity Framework loads into navigation properties. ms.author: riande ms.custom: mvc -ms.date: 07/22/2019 +ms.date: 09/28/2019 uid: data/ef-rp/read-related-data --- @@ -253,7 +253,7 @@ The preceding code makes the following changes: } ``` -* Adds a **Courses** column that displays courses taught by each instructor. See [Explicit Line Transition with `@:`](xref:mvc/views/razor#explicit-line-transition-with-) for more about this razor syntax. +* Adds a **Courses** column that displays courses taught by each instructor. See [Explicit line transition](xref:mvc/views/razor#explicit-line-transition) for more about this razor syntax. * Adds code that dynamically adds `class="success"` to the `tr` element of the selected instructor and course. This sets a background color for the selected row using a Bootstrap class. @@ -522,7 +522,7 @@ The preceding markup makes the following changes: } ``` -* Added a **Courses** column that displays courses taught by each instructor. See [Explicit line transition with `@:`](xref:mvc/views/razor#explicit-line-transition-with-) for more about this razor syntax. +* Added a **Courses** column that displays courses taught by each instructor. See [Explicit line transition](xref:mvc/views/razor#explicit-line-transition) for more about this razor syntax. * Added code that dynamically adds `class="success"` to the `tr` element of the selected instructor. This sets a background color for the selected row using a Bootstrap class. diff --git a/aspnetcore/mvc/views/razor.md b/aspnetcore/mvc/views/razor.md index 2928e4d8ec..3b021a1387 100644 --- a/aspnetcore/mvc/views/razor.md +++ b/aspnetcore/mvc/views/razor.md @@ -3,7 +3,7 @@ title: Razor syntax reference for ASP.NET Core author: rick-anderson description: Learn about Razor markup syntax for embedding server-based code into webpages. ms.author: riande -ms.date: 09/19/2019 +ms.date: 09/28/2019 uid: mvc/views/razor --- # Razor syntax reference for ASP.NET Core @@ -221,9 +221,9 @@ The `` tag is useful to control whitespace when rendering content: * Only the content between the `` tag is rendered. * No whitespace before or after the `` tag appears in the HTML output. -### Explicit line transition with \@: +### Explicit line transition -To render the rest of an entire line as HTML inside a code block, use the `@:` syntax: +To render the rest of an entire line as HTML inside a code block, use `@:` syntax: ```cshtml @for (var i = 0; i < people.Length; i++)