From 1d587e494ed2d1dfd5103fa497ebf5343ab7a153 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87otur?= Date: Tue, 6 Jul 2021 11:12:29 +0300 Subject: [PATCH] Update How-To-Add-Custom-Property-To-The-User-Entity.md ref ( #9284 ) --- .../How-To-Add-Custom-Property-To-The-User-Entity.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/Community-Articles/2020-10-08-How-To-Add-Custom-Property-To-The-User-Entity/How-To-Add-Custom-Property-To-The-User-Entity.md b/docs/en/Community-Articles/2020-10-08-How-To-Add-Custom-Property-To-The-User-Entity/How-To-Add-Custom-Property-To-The-User-Entity.md index 80141a32fe..308358bb67 100644 --- a/docs/en/Community-Articles/2020-10-08-How-To-Add-Custom-Property-To-The-User-Entity/How-To-Add-Custom-Property-To-The-User-Entity.md +++ b/docs/en/Community-Articles/2020-10-08-How-To-Add-Custom-Property-To-The-User-Entity/How-To-Add-Custom-Property-To-The-User-Entity.md @@ -101,7 +101,7 @@ Now we need to add migration to see what has changed in our database. This for, ![nuget-package-manager](./nuget-package-manager.png) -Select the **CustomizeUserDemo.EntityFramework.DbMigrations** as the **default project** and execute the following command: +Select the **CustomizeUserDemo.EntityFramework** as the **default project** and execute the following command: ```bash Add-Migration "Updated-User-Entity" @@ -109,7 +109,7 @@ Add-Migration "Updated-User-Entity" ![added-new-migration](./added-new-migration.png) -This will create a new migration class inside the `Migrations` folder of the **CustomizeUserDemo.EntityFrameworkCore.DbMigrations** project. +This will create a new migration class inside the `Migrations` folder of the **CustomizeUserDemo.EntityFrameworkCore** project. > If you are using another IDE than the Visual Studio, you can use `dotnet-ef` tool as [documented here](https://docs.microsoft.com/en-us/ef/core/managing-schemas/migrations/?tabs=dotnet-core-cli#create-a-migration).