pull/14986/head
Tom Dykstra 2019-10-10 10:42:27 -07:00 committed by Rick Anderson
parent b827e3db70
commit 789d96e276
22 changed files with 22 additions and 22 deletions

View File

@ -1,7 +1,7 @@
---
title: "Tutorial: Learn about advanced scenarios - ASP.NET MVC with EF Core"
description: "This tutorial introduces useful topics for going beyond the basics of developing ASP.NET Core web apps that use Entity Framework Core."
author: tdykstra
author: rick-anderson
ms.author: riande
ms.custom: mvc
ms.date: 03/27/2019

View File

@ -1,7 +1,7 @@
---
title: "Tutorial: Create a complex data model - ASP.NET MVC with EF Core"
description: "In this tutorial, add more entities and relationships and customize the data model by specifying formatting, validation, and mapping rules."
author: tdykstra
author: rick-anderson
ms.author: riande
ms.custom: mvc
ms.date: 03/27/2019

View File

@ -1,7 +1,7 @@
---
title: "Tutorial: Handle concurrency - ASP.NET MVC with EF Core"
description: "This tutorial shows how to handle conflicts when multiple users update the same entity at the same time."
author: tdykstra
author: rick-anderson
ms.author: riande
ms.custom: mvc
ms.date: 03/27/2019

View File

@ -1,7 +1,7 @@
---
title: "Tutorial: Implement CRUD Functionality - ASP.NET MVC with EF Core"
description: "In this tutorial, you'll review and customize the CRUD (create, read, update, delete) code that the MVC scaffolding automatically creates for you in controllers and views."
author: tdykstra
author: rick-anderson
ms.author: riande
ms.custom: mvc
ms.date: 02/04/2019

View File

@ -1,6 +1,6 @@
---
title: ASP.NET Core MVC with EF Core - tutorial series
author: tdykstra
author: rick-anderson
description:
ms.author: riande
ms.date: 03/27/2017

View File

@ -1,7 +1,7 @@
---
title: "Tutorial: Implement inheritance - ASP.NET MVC with EF Core"
description: "This tutorial will show you how to implement inheritance in the data model, using Entity Framework Core in an ASP.NET Core application."
author: tdykstra
author: rick-anderson
ms.author: riande
ms.custom: mvc
ms.date: 03/27/2019

View File

@ -1,7 +1,7 @@
---
title: "Tutorial: Get started with EF Core in an ASP.NET MVC web app"
description: "This is the first in a series of tutorials that explain how to build the Contoso University sample application from scratch."
author: tdykstra
author: rick-anderson
ms.author: riande
ms.custom: mvc
ms.date: 02/06/2019

View File

@ -1,7 +1,7 @@
---
title: "Tutorial: Using the migrations feature - ASP.NET MVC with EF Core"
description: "In this tutorial, you start using the EF Core migrations feature for managing data model changes in an ASP.NET Core MVC application."
author: tdykstra
author: rick-anderson
ms.author: riande
ms.custom: mvc
ms.date: 03/27/2019

View File

@ -1,7 +1,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."
author: tdykstra
author: rick-anderson
ms.author: riande
ms.date: 09/28/2019
ms.topic: tutorial

View File

@ -1,7 +1,7 @@
---
title: "Tutorial: Add sorting, filtering, and paging - ASP.NET MVC with EF Core"
description: "In this tutorial you'll add sorting, filtering, and paging functionality to the Students Index page. You'll also create a page that does simple grouping."
author: tdykstra
author: rick-anderson
ms.author: riande
ms.date: 03/27/2019
ms.topic: tutorial

View File

@ -1,7 +1,7 @@
---
title: "Tutorial: Update related data - ASP.NET MVC with EF Core"
description: "In this tutorial you'll update related data by updating foreign key fields and navigation properties."
author: tdykstra
author: rick-anderson
ms.author: riande
ms.custom: mvc
ms.date: 03/27/2019

View File

@ -1,6 +1,6 @@
---
title: Razor Pages with EF Core in ASP.NET Core - Data Model - 5 of 8
author: tdykstra
author: rick-anderson
description: In this tutorial, add more entities and relationships and customize the data model by specifying formatting, validation, and mapping rules.
ms.author: riande
ms.custom: mvc

View File

@ -1,6 +1,6 @@
---
title: Razor Pages with EF Core in ASP.NET Core - Concurrency - 8 of 8
author: tdykstra
author: rick-anderson
description: This tutorial shows how to handle conflicts when multiple users update the same entity at the same time.
ms.author: riande
ms.custom: mvc

View File

@ -1,6 +1,6 @@
---
title: Razor Pages with EF Core in ASP.NET Core - CRUD - 2 of 8
author: tdykstra
author: rick-anderson
description: Shows how to create, read, update,delete with EF Core.
ms.author: riande
ms.date: 07/22/2019

View File

@ -1,6 +1,6 @@
---
title: Razor Pages with Entity Framework Core in ASP.NET Core - Tutorial 1 of 8
author: tdykstra
author: rick-anderson
description: Shows how to create a Razor Pages app using Entity Framework Core
ms.author: riande
ms.custom: "mvc, seodec18"

View File

@ -1,6 +1,6 @@
---
title: Razor Pages with EF Core in ASP.NET Core - Migrations - 4 of 8
author: tdykstra
author: rick-anderson
description: In this tutorial, you start using the EF Core migrations feature for managing data model changes in an ASP.NET Core MVC app.
ms.author: riande
ms.date: 07/22/2019

View File

@ -1,6 +1,6 @@
---
title: Razor Pages with EF Core in ASP.NET Core - Read Related Data - 6 of 8
author: tdykstra
author: rick-anderson
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.custom: mvc

View File

@ -1,6 +1,6 @@
---
title: Razor Pages with EF Core in ASP.NET Core - Sort, Filter, Paging - 3 of 8
author: tdykstra
author: rick-anderson
description: In this tutorial you'll add sorting, filtering, and paging functionality to a Razor page using ASP.NET Core and Entity Framework Core.
ms.author: riande
ms.custom: mvc

View File

@ -1,6 +1,6 @@
---
title: Razor Pages with EF Core in ASP.NET Core - Update Related Data - 7 of 8
author: tdykstra
author: rick-anderson
description: In this tutorial, you update related data by updating foreign key fields and navigation properties.
ms.author: riande
ms.date: 07/22/2019

View File

@ -1,6 +1,6 @@
---
title: .NET Generic Host
author: tdykstra
author: rick-anderson
description: Learn about the .NET Core Generic Host, which is responsible for app startup and lifetime management.
monikerRange: '>= aspnetcore-2.1'
ms.author: riande

View File

@ -1,6 +1,6 @@
---
title: Logging in .NET Core and ASP.NET Core
author: tdykstra
author: rick-anderson
description: Learn how to use the logging framework provided by the Microsoft.Extensions.Logging NuGet package.
monikerRange: '>= aspnetcore-2.1'
ms.author: riande

View File

@ -1,6 +1,6 @@
---
title: Web server implementations in ASP.NET Core
author: tdykstra
author: rick-anderson
description: Discover the web servers Kestrel and HTTP.sys for ASP.NET Core. Learn how to choose a server and when to use a reverse proxy server.
monikerRange: '>= aspnetcore-2.1'
ms.author: riande