Skip to content

Commit 0d47c25

Browse files
committed
build warnings
1 parent a71beec commit 0d47c25

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

aspnetcore/tutorials/first-mvc-app/controller-methods-views.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: wadepickett
44
description: Part 6, add a model to an ASP.NET Core MVC app
55
monikerRange: '>= aspnetcore-3.1'
66
ms.author: wpickett
7-
ms.date: 24/11/2025
7+
ms.date: 11/24/2025
88
uid: tutorials/first-mvc-app/controller-methods-views
99
---
1010

@@ -18,7 +18,7 @@ By [Rick Anderson](https://twitter.com/RickAndMSFT)
1818

1919
We have a good start to the movie app, but the presentation isn't ideal, for example, **ReleaseDate** should be two words.
2020

21-
![Index view: Release Date is one word (no space) and every movie release date shows a time of 12 AM](~/tutorials/first-mvc-app/working-with-sql/_static/9/m90_not_formatted.png)
21+
![Index view: Release Date is one word (no space) and every movie release date shows a time of 12 AM](~/tutorials/first-mvc-app/working-with-sql/_static/9/m90-not-formatted.png)
2222

2323
Open the `Models/Movie.cs` file and add the highlighted lines shown below:
2424

@@ -28,7 +28,7 @@ Open the `Models/Movie.cs` file and add the highlighted lines shown below:
2828

2929
Using the data annotations above, run the application and refresh the `/Movies` page. Because the view markup uses the `@Html.DisplayNameFor` and `@Html.DisplayFor` methods to render the property name and value, the updated `Index` view shows all the fields properly formatted. For example, **Release Date** is now two words and the time information is no longer shown.
3030

31-
![Index view: Release Date is two words and every movie release date is shown without the time](~/tutorials/first-mvc-app/working-with-sql/_static/9/m90_formatted.png)
31+
![Index view: Release Date is two words and every movie release date is shown without the time](~/tutorials/first-mvc-app/working-with-sql/_static/9/m90-formatted.png)
3232

3333
The `[Column(TypeName = "decimal(18, 2)")]` data annotation is required so Entity Framework Core can correctly map `Price` to currency in the database. For more information, see [Data Types](/ef/core/modeling/relational/data-types).
3434

aspnetcore/tutorials/first-mvc-app/working-with-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Test the app. Stop it and restart it so the `SeedData.Initialize` method runs an
120120

121121
The app shows the seeded data.
122122

123-
![MVC Movie app open in Microsoft Edge showing movie data](~/tutorials/first-mvc-app/working-with-sql/_static/9/m90_not_formatted.png)
123+
![MVC Movie app open in Microsoft Edge showing movie data](~/tutorials/first-mvc-app/working-with-sql/_static/9/m90-not-formatted.png)
124124

125125
> [!div class="step-by-step"]
126126
> [Previous: Adding a model](~/tutorials/first-mvc-app/adding-model.md)

0 commit comments

Comments
 (0)