From 990f07508d54fd37e366c91315d958a9bf476084 Mon Sep 17 00:00:00 2001 From: Bader Nasser Al-Hashmi Date: Mon, 18 Sep 2017 19:44:33 +0400 Subject: [PATCH] Fix typo (#4314) --- .../mvc/overview/getting-started/introduction/adding-a-view.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet/mvc/overview/getting-started/introduction/adding-a-view.md b/aspnet/mvc/overview/getting-started/introduction/adding-a-view.md index e3d97378c8f8..62160439f35c 100644 --- a/aspnet/mvc/overview/getting-started/introduction/adding-a-view.md +++ b/aspnet/mvc/overview/getting-started/introduction/adding-a-view.md @@ -143,7 +143,7 @@ Now data is taken from the URL and passed to the controller using the [model bin ![](adding-a-view/_static/image12.png) -In the sample above, we used a `ViewBag` object to pass data from the controller to a view. Latter in the tutorial, we will use a view model to pass data from a controller to a view. The view model approach to passing data is generally much preferred over the view bag approach. See the blog entry [Dynamic V Strongly Typed Views](https://blogs.msdn.com/b/rickandy/archive/2011/01/28/dynamic-v-strongly-typed-views.aspx) for more information. +In the sample above, we used a `ViewBag` object to pass data from the controller to a view. Later in the tutorial, we will use a view model to pass data from a controller to a view. The view model approach to passing data is generally much preferred over the view bag approach. See the blog entry [Dynamic V Strongly Typed Views](https://blogs.msdn.com/b/rickandy/archive/2011/01/28/dynamic-v-strongly-typed-views.aspx) for more information. Well, that was a kind of an "M" for model, but not the database kind. Let's take what we've learned and create a database of movies.