2017-11-01 13:38:47 +08:00
---
title: ASP.NET Core Razor Pages with EF Core - tutorial series
2017-12-02 10:51:36 +08:00
author: rick-anderson
2017-11-01 13:38:47 +08:00
description:
manager: wpickett
2018-01-29 23:21:31 +08:00
ms.author: riande
2017-11-01 13:38:47 +08:00
ms.date: 03/15/2017
ms.prod: asp.net-core
2018-01-29 23:21:31 +08:00
ms.technology: aspnet
ms.topic: get-started-article
2017-11-01 13:38:47 +08:00
uid: data/ef-rp/index
---
2018-03-22 08:18:35 +08:00
# ASP.NET Core Razor Pages with EF Core - tutorial series
2017-11-01 13:38:47 +08:00
2018-01-05 10:46:49 +08:00
This series of tutorials teaches you how to create ASP.NET Core Razor Pages web apps that use Entity Framework (EF) Core for data access. The tutorials require Visual Studio 2017.
2017-11-01 13:38:47 +08:00
2018-03-15 10:51:34 +08:00
1. [Get started ](xref:data/ef-rp/intro )
2017-12-02 10:51:36 +08:00
1. [Create, Read, Update, and Delete operations ](xref:data/ef-rp/crud )
1. [Sorting, filtering, paging, and grouping ](xref:data/ef-rp/sort-filter-page )
1. [Migrations ](xref:data/ef-rp/migrations )
2018-03-22 08:18:35 +08:00
1. [Create a complex data model ](xref:data/ef-rp/complex-data-model )
2017-12-02 10:51:36 +08:00
1. [Reading related data ](xref:data/ef-rp/read-related-data )
1. [Updating related data ](xref:data/ef-rp/update-related-data )
2018-03-22 08:18:35 +08:00
1. [Handle concurrency conflicts ](xref:data/ef-rp/concurrency )