diff --git a/docs/en/Tutorials/Part-10.md b/docs/en/Tutorials/Part-10.md index 8a0f3295d1..0b77bd2645 100644 --- a/docs/en/Tutorials/Part-10.md +++ b/docs/en/Tutorials/Part-10.md @@ -105,6 +105,7 @@ This should create a new migration class with the following code in its `Up` met migrationBuilder.AddColumn( name: "AuthorId", table: "AppBooks", + type: "uniqueidentifier", nullable: false, defaultValue: new Guid("00000000-0000-0000-0000-000000000000")); @@ -708,7 +709,7 @@ namespace Acme.BookStore.Books ### The Book List -Book list page change is trivial. Open the `Pages/Books/Index.js` in the `Acme.BookStore.Web` project and add the following column definition between the `name` and `type` columns: +Book list page change is trivial. Open the `Pages/Books/Index.js` in the `Acme.BookStore.Web` project and add an `authorName` column between the `name` and `type` columns: ````js ... @@ -735,7 +736,7 @@ Book list page change is trivial. Open the `Pages/Books/Index.js` in the `Acme.B When you run the application, you can see the *Author* column on the table: -![bookstore-added-author-to-book-list](images/bookstore-added-author-to-book-list.png) +![bookstore-added-author-to-book-list](images/bookstore-added-author-to-book-list-2.png) ### Create Modal @@ -937,7 +938,7 @@ CreateMap(); You can run the application and try to create a new book or update an existing book. You will see a drop down list on the create/update form to select the author of the book: -![bookstore-added-authors-to-modals](images/bookstore-added-authors-to-modals.png) +![bookstore-added-authors-to-modals](images/bookstore-added-authors-to-modals-2.png) {{else if UI=="NG"}} diff --git a/docs/en/Tutorials/images/bookstore-added-author-to-book-list-2.png b/docs/en/Tutorials/images/bookstore-added-author-to-book-list-2.png new file mode 100644 index 0000000000..ca39f239c1 Binary files /dev/null and b/docs/en/Tutorials/images/bookstore-added-author-to-book-list-2.png differ diff --git a/docs/en/Tutorials/images/bookstore-added-authors-to-modals-2.png b/docs/en/Tutorials/images/bookstore-added-authors-to-modals-2.png new file mode 100644 index 0000000000..2b09baf642 Binary files /dev/null and b/docs/en/Tutorials/images/bookstore-added-authors-to-modals-2.png differ