Skip to content

Commit

Permalink
Fix code fencing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
scottaddie authored Sep 5, 2017
1 parent 8429645 commit 090137e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aspnetcore/data/ef-mvc/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ Right-click the **Student** table and click **View Data** to see the columns tha

The *.mdf* and *.ldf* database files are in the *C:\Users\<yourusername>* folder.

Because you're calling `EnsureCreated` in the initializer method that runs on app start, you could now make a change to the `Student class`, delete the database, run the application again, and the database would automatically be re-created to match your change. For example, if you add an `EmailAddress` property to the `Student` class, you'll see a new `EmailAddress` column in the re-created table.
Because you're calling `EnsureCreated` in the initializer method that runs on app start, you could now make a change to the `Student` class, delete the database, run the application again, and the database would automatically be re-created to match your change. For example, if you add an `EmailAddress` property to the `Student` class, you'll see a new `EmailAddress` column in the re-created table.

## Conventions

Expand Down

0 comments on commit 090137e

Please sign in to comment.