Bookmark update (#14682)

pull/14683/head
Luke Latham 2019-09-28 06:52:34 -05:00 committed by GitHub
parent 05d54916dd
commit 0026cec332
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View File

@ -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." description: "In this tutorial you'll read and display related data -- that is, data that the Entity Framework loads into navigation properties."
author: tdykstra author: tdykstra
ms.author: riande ms.author: riande
ms.date: 03/27/2019 ms.date: 09/28/2019
ms.topic: tutorial ms.topic: tutorial
uid: data/ef-mvc/read-related-data 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. * 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.

View File

@ -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. 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.author: riande
ms.custom: mvc ms.custom: mvc
ms.date: 07/22/2019 ms.date: 09/28/2019
uid: data/ef-rp/read-related-data 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. * 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. * 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.

View File

@ -3,7 +3,7 @@ title: Razor syntax reference for ASP.NET Core
author: rick-anderson author: rick-anderson
description: Learn about Razor markup syntax for embedding server-based code into webpages. description: Learn about Razor markup syntax for embedding server-based code into webpages.
ms.author: riande ms.author: riande
ms.date: 09/19/2019 ms.date: 09/28/2019
uid: mvc/views/razor uid: mvc/views/razor
--- ---
# Razor syntax reference for ASP.NET Core # Razor syntax reference for ASP.NET Core
@ -221,9 +221,9 @@ The `<text>` tag is useful to control whitespace when rendering content:
* Only the content between the `<text>` tag is rendered. * Only the content between the `<text>` tag is rendered.
* No whitespace before or after the `<text>` tag appears in the HTML output. * No whitespace before or after the `<text>` tag appears in the HTML output.
### Explicit line transition with \@&colon; ### 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 ```cshtml
@for (var i = 0; i < people.Length; i++) @for (var i = 0; i < people.Length; i++)