fix links

pull/4856/head
rick-anderson 2017-11-22 16:00:00 -10:00
parent fa1143c886
commit c31f84cce5
5 changed files with 6 additions and 7 deletions

View File

@ -21,7 +21,7 @@ by [Rick Anderson](https://github.com/Rick-Anderson)
In this section you'll add some classes for managing movies in a database. These classes will be the "model" part of the ASP.NET MVC app.
You'll use a .NET Framework data-access technology known as the [Entity Framework](https://docs.microsoft.com/ef/) to define and work with these model classes. The Entity Framework (often referred to as EF) supports a development paradigm called *Code First*. Code First allows you to create model objects by writing simple classes. (These are also known as POCO classes, from "plain-old CLR objects.") You can then have the database created on the fly from your classes, which enables a very clean and rapid development workflow. If you are required to create the database first, you can still follow this tutorial to learn about MVC and EF app development. You can then follow Tom Fizmakens [ASP.NET Scaffolding](xref:visual-studio/overview/2013/aspnet-scaffolding-overview.md) tutorial, which covers the database first approach.
You'll use a .NET Framework data-access technology known as the [Entity Framework](https://docs.microsoft.com/ef/) to define and work with these model classes. The Entity Framework (often referred to as EF) supports a development paradigm called *Code First*. Code First allows you to create model objects by writing simple classes. (These are also known as POCO classes, from "plain-old CLR objects.") You can then have the database created on the fly from your classes, which enables a very clean and rapid development workflow. If you are required to create the database first, you can still follow this tutorial to learn about MVC and EF app development. You can then follow Tom Fizmakens [ASP.NET Scaffolding](xref:visual-studio/overview/2013/aspnet-scaffolding-overview) tutorial, which covers the database first approach.
## Adding Model Classes

View File

@ -20,7 +20,7 @@ by [Rick Anderson](https://github.com/Rick-Anderson)
[!INCLUDE[consider RP](../../../../includes/razor.md)]
This tutorial will teach you the basics of building an ASP.NET MVC 5 web app using [Visual Studio 2017](https://www.visualstudio.com/). Final Source for tutorial located on [GitHub](xref:mvc/overview/getting-started/introduction/sample/MvcMovie)
This tutorial will teach you the basics of building an ASP.NET MVC 5 web app using [Visual Studio 2017](https://www.visualstudio.com/). Final Source for tutorial located on [GitHub](https://github.com/aspnet/Docs/tree/master/aspnet/mvc/overview/getting-started/introduction/sample/MvcMovie/MvcMovie)
This tutorial was written by [Scott Guthrie](https://weblogs.asp.net/scottgu/) (twitter[@scottgu](https://twitter.com/scottgu) ), [Scott Hanselman](http://www.hanselman.com/blog/) (twitter: [@shanselman](https://twitter.com/shanselman) ), and [Rick Anderson](https://twitter.com/RickAndMSFT) ( [@RickAndMSFT](https://twitter.com/#!/RickAndMSFT) )

View File

@ -19,7 +19,7 @@ Getting Started with ASP.NET MVC 5
[!INCLUDE[consider RP](../../../../includes/razor.md)]
This following tutorial series covers ASP.NET MVC: Source located on [GitHub](xref:mvc/overview/getting-started/introduction/sample/MvcMovie)
This following tutorial series covers ASP.NET MVC: Source located on [GitHub](https://github.com/aspnet/Docs/tree/master/aspnet/mvc/overview/getting-started/introduction/sample/MvcMovie/MvcMovie)
- [Getting Started](getting-started.md)
- [Adding a Controller](adding-a-controller.md)

View File

@ -1,2 +1,2 @@
> [!NOTE]
> This document is part of the [Getting Started with ASP.NET MVC 5](index.md) tutorial. Final Source for tutorial located on [GitHub](xref:mvc/overview/getting-started/introduction/sample/MvcMovie)
> This document is part of the [Getting Started with ASP.NET MVC 5](xref:mvc/overview/getting-started/introduction/getting-started) tutorial. Final Source for tutorial located on [GitHub](https://github.com/aspnet/Docs/tree/master/aspnet/mvc/overview/getting-started/introduction/sample/MvcMovie/MvcMovie)

View File

@ -5,9 +5,8 @@ author: MikeWasson
description: ""
ms.author: aspnetcontent
manager: wpickett
ms.date: 01/20/2014
ms.date: 11/24/2017
ms.topic: article
ms.assetid: df1baeef-a737-471f-a6ae-cca54cfb26d4
ms.technology: dotnet-webapi
ms.prod: .net-framework
msc.legacyurl: /web-api/overview/advanced/calling-a-web-api-from-a-net-client
@ -21,7 +20,7 @@ by [Mike Wasson](https://github.com/MikeWasson)
This tutorial shows how to call a web API from a .NET application, using [System.Net.Http.HttpClient.](https://msdn.microsoft.com/en-us/library/system.net.http.httpclient(v=vs.110).aspx)
In this tutorial, we will write an client application that consumes the following web API.
In this tutorial, a client app is written that consumes the following web API.
| Action | HTTP method | Relative URI |
| --- | --- | --- |