diff --git a/docs/en/tutorials/todo/images/todo-ui-initial-v2.png b/docs/en/tutorials/todo/images/todo-ui-initial-v2.png new file mode 100644 index 0000000000..f3f4f4e401 Binary files /dev/null and b/docs/en/tutorials/todo/images/todo-ui-initial-v2.png differ diff --git a/docs/en/tutorials/todo/images/todo-ui-initial.png b/docs/en/tutorials/todo/images/todo-ui-initial.png deleted file mode 100644 index 780fafa15f..0000000000 Binary files a/docs/en/tutorials/todo/images/todo-ui-initial.png and /dev/null differ diff --git a/docs/en/tutorials/todo/layered/index.md b/docs/en/tutorials/todo/layered/index.md index 86a480ad42..a1d1defc90 100644 --- a/docs/en/tutorials/todo/layered/index.md +++ b/docs/en/tutorials/todo/layered/index.md @@ -159,7 +159,7 @@ This command takes time, but eventually runs and opens the application in your d {{end}} -![todo-ui-initial](../images/todo-ui-initial.png) +![todo-ui-initial](../images/todo-ui-initial-v2.png) You can click on the *Login* button, use `admin` as the username and `1q2w3E*` as the password to login to the application. diff --git a/docs/en/tutorials/todo/single-layer/index.md b/docs/en/tutorials/todo/single-layer/index.md index 6ce5bec5b0..a09d638cfa 100644 --- a/docs/en/tutorials/todo/single-layer/index.md +++ b/docs/en/tutorials/todo/single-layer/index.md @@ -152,7 +152,7 @@ This command takes time, but eventually runs and opens the application in your d {{end}} -![todo-ui-initial](../images/todo-ui-initial.png) +![todo-ui-initial](../images/todo-ui-initial-v2.png) You can click on the *Login* button and use `admin` as the username and `1q2w3E*` as the password to login to the application. @@ -173,7 +173,7 @@ public class TodoItem : BasicAggregateRoot } ```` -`BasicAggregateRoot` is the simplest base class to create root entities, and `Guid` is the primary key (`Id`) of the entity here. +`BasicAggregateRoot` is the simplest base class to create root [entities](../../../framework/architecture/domain-driven-design/entities.md), and `Guid` is the primary key (`Id`) of the entity here. ## Database Integration @@ -223,7 +223,7 @@ dotnet ef migrations add Added_TodoItem This will add a new migration class to the project. You should see the new migration in the `Migrations` folder: -![todo-efcore-migration](todo-efcore-migration-single-layer.png) +![todo-efcore-migration](todo-efcore-migration-single-layer-v2.png) Then, you can apply changes to the database using the following command, in the same command-line terminal: @@ -836,7 +836,7 @@ Now, you can run the application again to see the result. ## Conclusion -In this tutorial, we've built a very simple application to warm up with the ABP. +In this tutorial, we've built a very simple application to warm up with the ABP. Check the [Web Application Development Tutorial](../../book-store/part-01.md) to see a real-life web application development in a layered architecture using the [Layered Application Startup Template](../../../solution-templates/layered-web-application). ## Source Code @@ -844,4 +844,4 @@ You can find the source code of the completed application [here](https://github. ## See Also -* Check the [Web Application Development Tutorial](../../book-store/part-01.md) to see a real-life web application development in a layered architecture using the [Layered Application Startup Template](../../../solution-templates/layered-web-application). +* [Web Application Development Tutorial](../../book-store/part-01.md) diff --git a/docs/en/tutorials/todo/single-layer/todo-efcore-migration-single-layer-v2.png b/docs/en/tutorials/todo/single-layer/todo-efcore-migration-single-layer-v2.png new file mode 100644 index 0000000000..a8d2d55c4a Binary files /dev/null and b/docs/en/tutorials/todo/single-layer/todo-efcore-migration-single-layer-v2.png differ diff --git a/docs/en/tutorials/todo/single-layer/todo-efcore-migration-single-layer.png b/docs/en/tutorials/todo/single-layer/todo-efcore-migration-single-layer.png deleted file mode 100644 index fe067e9817..0000000000 Binary files a/docs/en/tutorials/todo/single-layer/todo-efcore-migration-single-layer.png and /dev/null differ