Update adding-model.md (#2413)

pull/2420/head
Rick Anderson 2016-12-16 20:54:23 -10:00 committed by GitHub
parent 65063d2898
commit de05c02e52
1 changed files with 3 additions and 1 deletions

View File

@ -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.
Youll 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.