From d0fe3f358ea3dee0543d4c0bfcc495cb69dcc378 Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Sat, 3 Jun 2017 13:22:21 -0700 Subject: [PATCH] escape angle bracket --- aspnetcore/data/ef-mvc/migrations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/data/ef-mvc/migrations.md b/aspnetcore/data/ef-mvc/migrations.md index e8af67a49a..279bed4d62 100644 --- a/aspnetcore/data/ef-mvc/migrations.md +++ b/aspnetcore/data/ef-mvc/migrations.md @@ -88,7 +88,7 @@ If you see an error message "*cannot access the file ... ContosoUniversity.dll b ## Examine the Up and Down methods -When you executed the `migrations add` command, EF generated the code that will create the database from scratch. This code is in the *Migrations* folder, in the file named *_InitialCreate.cs*. The `Up` method of the `InitialCreate` class creates the database tables that correspond to the data model entity sets, and the `Down` method deletes them, as shown in the following example. +When you executed the `migrations add` command, EF generated the code that will create the database from scratch. This code is in the *Migrations* folder, in the file named *\_InitialCreate.cs*. The `Up` method of the `InitialCreate` class creates the database tables that correspond to the data model entity sets, and the `Down` method deletes them, as shown in the following example. [!code-csharp[Main](intro/samples/cu/Migrations/20170215220724_InitialCreate.cs?range=92-120)]