Browse Source

Merge pull request #23133 from abpframework/auto-merge/rel-9-3/3800

Merge branch dev with rel-9.3
pull/23167/head
maliming 1 year ago
committed by GitHub
parent
commit
4242c57306
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. BIN
      docs/en/tutorials/todo/images/todo-ui-initial-v2.png
  2. BIN
      docs/en/tutorials/todo/images/todo-ui-initial.png
  3. 2
      docs/en/tutorials/todo/layered/index.md
  4. 10
      docs/en/tutorials/todo/single-layer/index.md
  5. BIN
      docs/en/tutorials/todo/single-layer/todo-efcore-migration-single-layer-v2.png
  6. BIN
      docs/en/tutorials/todo/single-layer/todo-efcore-migration-single-layer.png

BIN
docs/en/tutorials/todo/images/todo-ui-initial-v2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

BIN
docs/en/tutorials/todo/images/todo-ui-initial.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

2
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.

10
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<Guid>
}
````
`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)

BIN
docs/en/tutorials/todo/single-layer/todo-efcore-migration-single-layer-v2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
docs/en/tutorials/todo/single-layer/todo-efcore-migration-single-layer.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Loading…
Cancel
Save