Browse Source

Tutorials parts updated

pull/19049/head
honurbu 3 years ago
parent
commit
7b49ea7fca
  1. 6
      docs/en/Getting-Started-Create-Solution-Single-Layer.md
  2. 6
      docs/en/Getting-Started-Create-Solution.md
  3. 7
      docs/en/Getting-Started-Running-Solution.md
  4. 6
      docs/en/Getting-Started-Setup-Environment.md
  5. 11
      docs/en/Tutorials/Part-10.md
  6. 12
      docs/en/Tutorials/Part-2.md
  7. 11
      docs/en/Tutorials/Part-3.md
  8. 14
      docs/en/Tutorials/Part-4.md
  9. 21
      docs/en/Tutorials/Part-5.md
  10. 21
      docs/en/Tutorials/Part-6.md
  11. 21
      docs/en/Tutorials/Part-7.md
  12. 19
      docs/en/Tutorials/Part-8.md
  13. 21
      docs/en/Tutorials/Part-9.md

6
docs/en/Getting-Started-Create-Solution-Single-Layer.md

@ -45,8 +45,4 @@ Configure<AbpUnitOfWorkDefaultOptions>(options =>
> Or you can delete that code since `Auto` is already the default behavior.
{{ end }}
## Next Step
* [Running the solution](Getting-Started-Running-Solution-Single-Layer.md)
{{ end }}

6
docs/en/Getting-Started-Create-Solution.md

@ -79,8 +79,4 @@ Configure<AbpUnitOfWorkDefaultOptions>(options =>
> Or you can delete that code since `Auto` is already the default behavior.
{{ end }}
## Next Step
* [Running the solution](Getting-Started-Running-Solution.md)
{{ end }}

7
docs/en/Getting-Started-Running-Solution.md

@ -268,9 +268,4 @@ It may take a longer time for the first build. Once it finishes, it opens the An
{{ end }}
Enter **admin** as the username and **1q2w3E*** as the password to login to the application. The application is up and running. You can start developing your application based on this startup template.
## See Also
* [Web Application Development Tutorial](Tutorials/Part-1.md)
* [Application Startup Template](Startup-Templates/Application.md)
Enter **admin** as the username and **1q2w3E*** as the password to login to the application. The application is up and running. You can start developing your application based on this startup template.

6
docs/en/Getting-Started-Setup-Environment.md

@ -55,8 +55,4 @@ If you've already installed, you can update it using the following command:
````shell
dotnet tool update -g Volo.Abp.Cli
````
## Next Step
* [Creating a new solution](Getting-Started-Create-Solution.md)
````

11
docs/en/Tutorials/Part-10.md

@ -6,6 +6,17 @@
"DB": ["EF","Mongo"]
}
````
````json
//[doc-nav]
{
"Previous": {
"Name": "Part 9: Authors: User Interface",
"Path": "Tutorials/Part-9"
}
}
````
## About This Tutorial
In this tutorial series, you will build an ABP based web application named `Acme.BookStore`. This application is used to manage a list of books and their authors. It is developed using the following technologies:

12
docs/en/Tutorials/Part-2.md

@ -10,12 +10,12 @@
//[doc-nav]
{
"Next": {
"Name": "# Web Application Development Tutorial - Part 3: Creating, Updating and Deleting Books",
"Path": "Part-3"
"Name": "Part 3: Creating, Updating and Deleting Books",
"Path": "Tutorials/Part-3"
},
"Previous": {
"Name": "# Web Application Development Tutorial - Part 1: Creating the Server Side",
"Path": "Part-1"
"Name": "Part 1: Creating the Server Side",
"Path": "Tutorials/Part-1"
}
}
````
@ -682,7 +682,3 @@ You can run the application! The final UI of this part is shown below:
This is a fully working, server side paged, sorted and localized table of books.
{{end # UI }}
## The Next Part
Check the [next part](Part-3.md) of this tutorial.

11
docs/en/Tutorials/Part-3.md

@ -11,12 +11,12 @@
//[doc-nav]
{
"Next": {
"Name": "# Web Application Development Tutorial - Part 4: Integration Tests",
"Path": "Part-4"
"Name": "Part 4: Integration Tests",
"Path": "Tutorials/Part-4"
},
"Previous": {
"Name": "# Web Application Development Tutorial - Part 2: The Book List Page",
"Path": "Part-2"
"Name": "Part 2: The Book List Page",
"Path": "Tutorials/Part-2"
}
}
````
@ -1569,6 +1569,3 @@ Here's the complete code to create the book management CRUD page, that has been
{{end}}
## The Next Part
Check out the [next part](Part-4.md) of this tutorial.

14
docs/en/Tutorials/Part-4.md

@ -11,12 +11,12 @@
//[doc-nav]
{
"Next": {
"Name": "# Web Application Development Tutorial - Part 5: Authorization",
"Path": "Part-5"
"Name": "Part 5: Authorization",
"Path": "Tutorials/Part-5"
},
"Previous": {
"Name": "# Web Application Development Tutorial - Part 3: Creating, Updating and Deleting Books",
"Path": "Part-3"
"Name": "Part 3: Creating, Updating and Deleting Books",
"Path": "Tutorials/Part-3"
}
}
````
@ -297,8 +297,4 @@ Open the **Test Explorer Window** (use Test -> Windows -> Test Explorer menu if
![bookstore-appservice-tests](./images/bookstore-appservice-tests.png)
Congratulations, the **green icons** indicates that the tests have been successfully passed!
## The Next Part
See the [next part](Part-5.md) of this tutorial.
Congratulations, the **green icons** indicates that the tests have been successfully passed!

21
docs/en/Tutorials/Part-5.md

@ -6,6 +6,21 @@
"DB": ["EF","Mongo"]
}
````
````json
//[doc-nav]
{
"Next": {
"Name": "Part 6: Authors: Domain Layer",
"Path": "Tutorials/Part-6"
},
"Previous": {
"Name": "Part 4: Integration Tests",
"Path": "Tutorials/Part-4"
}
}
````
## About This Tutorial
In this tutorial series, you will build an ABP based web application named `Acme.BookStore`. This application is used to manage a list of books and their authors. It is developed using the following technologies:
@ -562,8 +577,4 @@ private async Task ConfigureMainMenuAsync(MenuConfigurationContext context)
}
````
{{end}}
## The Next Part
See the [next part](Part-6.md) of this tutorial.
{{end}}

21
docs/en/Tutorials/Part-6.md

@ -6,6 +6,21 @@
"DB": ["EF","Mongo"]
}
````
````json
//[doc-nav]
{
"Next": {
"Name": "Part 7: Authors: Database Integration",
"Path": "Tutorials/Part-7"
},
"Previous": {
"Name": "Part 5: Authorization",
"Path": "Tutorials/Part-5"
}
}
````
## About This Tutorial
In this tutorial series, you will build an ABP based web application named `Acme.BookStore`. This application is used to manage a list of books and their authors. It is developed using the following technologies:
@ -263,8 +278,4 @@ We will implement this repository in the next part.
This part covered the domain layer of the authors functionality of the book store application. The main files created/updated in this part was highlighted in the picture below:
![bookstore-author-domain-layer](images/bookstore-author-domain-layer.png)
## The Next Part
See the [next part](Part-7.md) of this tutorial.
![bookstore-author-domain-layer](images/bookstore-author-domain-layer.png)

21
docs/en/Tutorials/Part-7.md

@ -6,6 +6,21 @@
"DB": ["EF","Mongo"]
}
````
````json
//[doc-nav]
{
"Next": {
"Name": "Part 8: Authors: Application Layer",
"Path": "Tutorials/Part-8"
},
"Previous": {
"Name": "Part 6: Authors: Domain Layer",
"Path": "Tutorials/Part-6"
}
}
````
## About This Tutorial
In this tutorial series, you will build an ABP based web application named `Acme.BookStore`. This application is used to manage a list of books and their authors. It is developed using the following technologies:
@ -226,8 +241,4 @@ public class MongoDbAuthorRepository
> See the [MongoDB Integration document](../MongoDB.md) for more information on the MongoDB based repositories.
{{end}}
## The Next Part
See the [next part](Part-8.md) of this tutorial.
{{end}}

19
docs/en/Tutorials/Part-8.md

@ -6,6 +6,21 @@
"DB": ["EF","Mongo"]
}
````
````json
//[doc-nav]
{
"Next": {
"Name": "Part 9: Authors: User Interface",
"Path": "Tutorials/Part-9"
},
"Previous": {
"Name": "Part 7: Authors: Database Integration",
"Path": "Tutorials/Part-7"
}
}
````
## About This Tutorial
In this tutorial series, you will build an ABP based web application named `Acme.BookStore`. This application is used to manage a list of books and their authors. It is developed using the following technologies:
@ -589,7 +604,3 @@ public class MongoDBAuthorAppService_Tests : AuthorAppService_Tests<BookStoreMon
{{end}}
Created some tests for the application service methods, which should be clear to understand.
## The Next Part
See the [next part](Part-9.md) of this tutorial.

21
docs/en/Tutorials/Part-9.md

@ -6,6 +6,21 @@
"DB": ["EF","Mongo"]
}
````
````json
//[doc-nav]
{
"Next": {
"Name": "Part 10: Book to Author Relation",
"Path": "Tutorials/Part-10"
},
"Previous": {
"Name": "Part 8: Authors: Application Layer",
"Path": "Tutorials/Part-8"
}
}
````
## About This Tutorial
In this tutorial series, you will build an ABP based web application named `Acme.BookStore`. This application is used to manage a list of books and their authors. It is developed using the following technologies:
@ -1242,8 +1257,4 @@ That's all! This is a fully working CRUD page, you can create, edit and delete t
> **Tip**: If you run the `.DbMigrator` console application after defining a new permission, it automatically grants these new permissions to the admin role and you don't need to manually grant the permissions yourself.
{{end}}
## The Next Part
See the [next part](Part-10.md) of this tutorial.
{{end}}
Loading…
Cancel
Save