Home  >  Article  >  Backend Development  >  Recommended 8 articles about abp entry series

Recommended 8 articles about abp entry series

黄舟
黄舟Original
2017-06-12 13:31:273113browse

This section mainly explains how to use ABP for background paging, and also explains the implementation of ABP background paging logic. At the same time, it also demonstrates how to use X.PagedList for front-end paging to complete the addition, deletion, modification and check of the task list. Let's talk about the essential paging function. First of all, I am very glad that ABP has helped us encapsulate the paging implementation, which is really considerate. Come on, let's take a look at how to use ABP for paging in this section. 1. The paging request DTO defines Data Transfer Objects for data transmission in the application layer and presentation layer. The presentation layer passes in the data transfer object (DTO) to call an application service method, and then the application service executes some specific business logic through the domain object and returns the DTO to the presentation layer. In this way, the presentation layer and domain layer are completely separated. In a well-layered application, the presentation layer does not directly use domain objects (warehouses, entities). When we have a paging request in the presentation layer, we generally need to specify two parameters, one is used to mark the page, and the other is the number of lines per page (usually configured with a configuration file). Because paging is a very commonly used function, so in the presentation layer we

1. Introduction to the implementation method of the paging function in the ABP entry series

Recommended 8 articles about abp entry series

Introduction: This section mainly explains how to use ABP for background paging, and incidentally explains the implementation of ABP background paging logic. It also demonstrates how to use X.PagedList for front-end paging

2. ABP entry series introduction to Json formatting usage

Recommended 8 articles about abp entry series

Introduction: JSON (JavaScript Object Notation) is a lightweight data exchange format. This article focuses on introducing Json formatting in the ABP introductory series. Friends who need it can refer to

3. ABP introductory series (6) - display layer to implement addition, deletion, modification and query

Recommended 8 articles about abp entry series

Introduction: This chapter will realize the presentation layer by improving the Controller, View, and ViewModel. Add, delete, modify and check. The final effect is as follows:

4. ABP Getting Started Series (5) - Creating Application Services

Recommended 8 articles about abp entry series

Introduction:

5. ABP Getting Started Series (4) - Domain Layer Definition and Implementation of Warehousing

Recommended 8 articles about abp entry series

##Introduction: In ABP, the warehousing class must implement the IRepository interface, which defines commonly used additions, deletions, modifications, and aggregations. Methods, including synchronous and asynchronous methods. It mainly includes the following methods:

6. ABP Getting Started Series (3) - Creating Entities at the Domain Layer

Recommended 8 articles about abp entry series

Introduction: In this section we mainly deal with the domain layer. First, we need to make a one-to-one correspondence between the architecture of ABP and the solutions created from the template. There are code generators available online to simplify our task at this step, but they are not recommended for beginners.

7. ABP Getting Started Series (2)—Creating a MAP version project through a template

Recommended 8 articles about abp entry series

Introduction: At this point, the ASP.NET MVC version of the MPA website project has been successfully created using the ABP template. The source code has been uploaded to Github-LearningMpaAbp for your own reference.

8. ABP Introduction Series (1) - Practical Exercises for Learning the Abp Framework

Recommended 8 articles about abp entry series

##Introduction: As a long-term worker at the .Net construction site, I have been committed to digging holes (Bugs) and filling holes (Debugs), but my technology has not improved. I was also enthusiastic about learning new technologies and dreamed of becoming a technology master.


The above is the detailed content of Recommended 8 articles about abp entry series. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn