diff --git a/aspnet/mvc/overview/getting-started/introduction/adding-a-model.md b/aspnet/mvc/overview/getting-started/introduction/adding-a-model.md index 7a2d9f660a..5a124bf855 100644 --- a/aspnet/mvc/overview/getting-started/introduction/adding-a-model.md +++ b/aspnet/mvc/overview/getting-started/introduction/adding-a-model.md @@ -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 diff --git a/aspnet/mvc/overview/getting-started/introduction/getting-started.md b/aspnet/mvc/overview/getting-started/introduction/getting-started.md index e12999e104..76406c8537 100644 --- a/aspnet/mvc/overview/getting-started/introduction/getting-started.md +++ b/aspnet/mvc/overview/getting-started/introduction/getting-started.md @@ -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) ) diff --git a/aspnet/mvc/overview/getting-started/introduction/index.md b/aspnet/mvc/overview/getting-started/introduction/index.md index b245094759..9a559aaa6a 100644 --- a/aspnet/mvc/overview/getting-started/introduction/index.md +++ b/aspnet/mvc/overview/getting-started/introduction/index.md @@ -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) diff --git a/aspnet/mvc/overview/getting-started/introduction/sample/code-location.md b/aspnet/mvc/overview/getting-started/introduction/sample/code-location.md index c08d1c4537..166b6833a2 100644 --- a/aspnet/mvc/overview/getting-started/introduction/sample/code-location.md +++ b/aspnet/mvc/overview/getting-started/introduction/sample/code-location.md @@ -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) \ No newline at end of file +> 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) \ No newline at end of file diff --git a/aspnet/web-api/overview/advanced/calling-a-web-api-from-a-net-client.md b/aspnet/web-api/overview/advanced/calling-a-web-api-from-a-net-client.md index 2216e16dff..caf3fda28e 100644 --- a/aspnet/web-api/overview/advanced/calling-a-web-api-from-a-net-client.md +++ b/aspnet/web-api/overview/advanced/calling-a-web-api-from-a-net-client.md @@ -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 | | --- | --- | --- |