From 9e7f03d5356c3205f78706bde8777a2b54175372 Mon Sep 17 00:00:00 2001 From: StevenElliott Date: Thu, 1 Oct 2015 10:18:08 -0400 Subject: [PATCH] Update mvc-with-entity-framework.rst --- mvc/tutorials/mvc-with-entity-framework.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mvc/tutorials/mvc-with-entity-framework.rst b/mvc/tutorials/mvc-with-entity-framework.rst index 0707fceec0..de3b9cc059 100644 --- a/mvc/tutorials/mvc-with-entity-framework.rst +++ b/mvc/tutorials/mvc-with-entity-framework.rst @@ -177,8 +177,8 @@ Open a command prompt in the project directory (ContosoBooks/src/ContosoBooks) a .. code-block:: none dnvm use 1.0.0-beta5 - dnx ef migration add Initial - dnx ef migration apply + dnx ef . migration add Initial + dnx ef . migration apply The "``add Initial``" command adds code to the project that allows EF to update the database schema. The "``apply``" command creates the actual database. After you run the run these commands, your project has a new folder named *Migrations*: