|
|
|
@ -36,11 +36,11 @@ This tutorial has multiple versions based on your **UI** and **Database** prefer |
|
|
|
|
|
|
|
## Introduction |
|
|
|
|
|
|
|
This part explains how to create a CRUD page for the `Author` entity introduced in previous parts. |
|
|
|
This part explains how to create a CRUD page for the `Author` entity introduced in the previous parts. |
|
|
|
|
|
|
|
{{if UI == "MVC"}} |
|
|
|
|
|
|
|
## The Book List Page |
|
|
|
## The Authors List Page |
|
|
|
|
|
|
|
Create a new razor page, `Index.cshtml` under the `Pages/Authors` folder of the `Acme.BookStore.Web` project and change the content as given below. |
|
|
|
|
|
|
|
@ -832,6 +832,10 @@ That's all! This is a fully working CRUD page, you can create, edit and delete a |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
{{if UI == "Blazor"}} |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
## The Next Part |
|
|
|
|
|
|
|
See the [next part](Part-10.md) of this tutorial. |