草叶睡蜢

导航

随笔分类 -  ABP

1 2 下一页

Web应用开发教程 - Part 8: 作家:应用层
摘要:Web应用开发教程 - Part 8: 作家:应用层 //[doc-params] { "UI": ["MVC","Blazor","BlazorServer","NG"], "DB": ["EF","Mongo"] } 关于本教程 在这个教程系列中,你将创建一个基于ABP的Web应用程序,叫 Ac 阅读全文

posted @ 2021-12-23 10:16 草叶睡蜢 阅读(167) 评论(0) 推荐(0)

Web应用开发教程 - Part 7: 作家:数据库集成
摘要:Web应用开发教程 - Part 7: 作家:数据库集成 //[doc-params] { "UI": ["MVC","Blazor","BlazorServer","NG"], "DB": ["EF","Mongo"] } 关于本教程 在这个教程系列中,你将创建一个基于ABP的Web应用程序,叫 阅读全文

posted @ 2021-12-22 09:33 草叶睡蜢 阅读(149) 评论(0) 推荐(0)

Web应用开发教程 - Part 6: 作家:领域层
摘要:Web应用开发教程 - Part 6: 作家:领域层 //[doc-params] { "UI": ["MVC","Blazor","BlazorServer","NG"], "DB": ["EF","Mongo"] } 关于本教程 在这个教程系列中,你将创建一个基于ABP的Web应用程序,叫 Ac 阅读全文

posted @ 2021-12-21 09:25 草叶睡蜢 阅读(159) 评论(0) 推荐(0)

Web应用开发教程 - Part 5: 授权
摘要:Web应用开发教程 - Part 5: 授权 授权 ABP框架提供了一个基于ASP.NET Core的授权基础设施的授权系统。在标准授权基础架构之上增加的一个主要功能是权限系统,它允许定义权限并启用/禁用每个角色、用户或客户端。 权限命名 一个权限必须有一个唯一的名字( string类型). 最好的 阅读全文

posted @ 2021-12-20 13:16 草叶睡蜢 阅读(399) 评论(0) 推荐(0)

基于ABP框架的Web应用程序开发教程(翻译)
摘要:Web Application Development Tutorial Web应用程序开发教程 About This Tutorial 关于本教程 In this tutorial series, you will build an ABP based web application named 阅读全文

posted @ 2021-12-18 16:57 草叶睡蜢 阅读(225) 评论(0) 推荐(0)

ABP学习demo分享
摘要:ABP 学习示例程序 基于EFCore+MySQL实现,按照官方示例(包含Quick Start中的TODO项目和Tutorials中的Books+Authors项目)一步一步对照官方指导说明实现。 AbpTestDemo.Application AbpTestDemo.Application.Co 阅读全文

posted @ 2021-12-18 16:37 草叶睡蜢 阅读(205) 评论(0) 推荐(0)

7 Reference Books 引用书籍
摘要:Reference Books 引用书籍 If you are more interested in the Domain Driven Design and building large-scale enterprise systems, the following books are recom 阅读全文

posted @ 2021-12-14 14:17 草叶睡蜢 阅读(188) 评论(2) 推荐(0)

6.2 Examples 示例
摘要:Examples 示例 This section contains some Application Service and Domain Service examples to discuss how to decide to place business logic inside these s 阅读全文

posted @ 2021-12-14 14:10 草叶睡蜢 阅读(175) 评论(0) 推荐(0)

6.1 Multiple Application Layers 多种应用层
摘要:Multiple Application Layers 多种应用层 DDD helps to deal with complexity when your system is large. Especially, if there are multiple applications are bein 阅读全文

posted @ 2021-12-14 13:28 草叶睡蜢 阅读(118) 评论(0) 推荐(0)

6 Domain Logic & Application Logic 领域逻辑&应用逻辑
摘要:Domain Logic & Application Logic 领域逻辑&应用逻辑 As mentioned before, Business Logic in the Domain Driven Design is split into two parts (layers): Domain Lo 阅读全文

posted @ 2021-12-14 11:46 草叶睡蜢 阅读(136) 评论(0) 推荐(0)

5.2 Updating / Manipulating An Entity 更新/使用实体
摘要:Updating / Manipulating An Entity 更新/使用实体 Once an entity is created, it is updated/manipulated by the use cases until it is deleted from the system. T 阅读全文

posted @ 2021-12-14 11:19 草叶睡蜢 阅读(55) 评论(0) 推荐(0)

5.1 Entity Creation 创建实体
摘要:Example Use Cases 用例案例 This section will demonstrate some example use cases and discuss alternative scenarios. 本节将展示一些用例案例,并讨论替代方案。 Entity Creation 创建 阅读全文

posted @ 2021-12-14 10:17 草叶睡蜢 阅读(226) 评论(0) 推荐(0)

4.7 Data transfer Objects 数据传输对象
摘要:Data transfer Objects 数据传输对象 A DTO is a simple object that is used to transfer state (data) between the Application and Presentation Layers. So,Applic 阅读全文

posted @ 2021-12-11 10:20 草叶睡蜢 阅读(240) 评论(0) 推荐(0)

4.6 应用层服务
摘要:Application Services 应用服务 An Application Service is a stateless service that implements use cases of the application. An application service typically 阅读全文

posted @ 2021-12-10 10:02 草叶睡蜢 阅读(152) 评论(0) 推荐(0)

4.5 领域服务
摘要:Domain Services 领域服务 Domain Services implement domain logic which; 领域服务实现了领域逻辑,其中: Depends on services and repositories. 取决于服务和存储库。 Needs to work with 阅读全文

posted @ 2021-12-10 09:24 草叶睡蜢 阅读(274) 评论(0) 推荐(0)

4.4 Specifications 规范
摘要:Specifications 基本原则 A specification is a named, reusable, combinable and testable class to filter the Domain Objects based on the business rules. 一个规范 阅读全文

posted @ 2021-12-09 11:13 草叶睡蜢 阅读(165) 评论(0) 推荐(0)

4.3 Repositories 存储层
摘要:Repositories 存储层 A Repository is a collection-like interface that is used by the Domain and Application Layers to access to the data persistence syste 阅读全文

posted @ 2021-12-08 16:02 草叶睡蜢 阅读(166) 评论(0) 推荐(0)

4.2 Aggregates 聚合体
摘要:Aggregates 聚合体 As said before, an Aggregate is a cluster of objects (entities and value objects) bound together by an Aggregate Root object. This sect 阅读全文

posted @ 2021-10-23 11:17 草叶睡蜢 阅读(396) 评论(5) 推荐(1)

4.1 The Example Domain 领域示例代码
摘要:4.1 The Example Domain 领域示例代码 The examples will use some concepts those are used by GitHub, like Issue, Repository, Label and User, you are already fa 阅读全文

posted @ 2021-10-21 15:39 草叶睡蜢 阅读(576) 评论(0) 推荐(0)

四、Implementation: The Building Blocks 实现:构件
摘要:四、Implementation: The Building Blocks 实现:构件 This is the essential part of this guide. We will introduce and explain some explicit rules with examples. 阅读全文

posted @ 2021-10-20 18:51 草叶睡蜢 阅读(79) 评论(0) 推荐(0)

1 2 下一页