From de05c02e5258bb3fc948ff209f09f15c5c6328d6 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Fri, 16 Dec 2016 20:54:23 -1000 Subject: [PATCH] Update adding-model.md (#2413) --- aspnetcore/tutorials/first-mvc-app/adding-model.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-mvc-app/adding-model.md b/aspnetcore/tutorials/first-mvc-app/adding-model.md index d5466d4164..c60bf21651 100644 --- a/aspnetcore/tutorials/first-mvc-app/adding-model.md +++ b/aspnetcore/tutorials/first-mvc-app/adding-model.md @@ -1,4 +1,4 @@ ---- +--- title: Adding a model | Microsoft Docs author: rick-anderson description: @@ -14,6 +14,8 @@ uid: tutorials/first-mvc-app/adding-model --- # Adding a model +By [Rick Anderson](https://twitter.com/RickAndMSFT) + In this section you'll add some classes for managing movies in a database. These classes will be the "**M**odel" part of the **M**VC app. You’ll use a .NET Framework data-access technology known as the [Entity Framework Core](http://ef.readthedocs.org/) to define and work with these data model classes. Entity Framework Core (often referred to as **EF** Core) features a development paradigm called *Code First*. You write the code first, and the database tables are created from this code. Code First allows you to create data model objects by writing simple classes. (These are also known as POCO classes, from "plain-old CLR objects.") The database is created from your classes. If you are required to create the database first, you can still follow this tutorial to learn about MVC and EF app development.