ABP 是 ASP.NET Boilerplate 模板项目的简称,它的目的是创建一个通用的WEB应用程序和项目模板。编程
官网地址:http://www.aspnetboilerplate.com/
官网教程:http://www.aspnetboilerplate.com/Pages/Documents/Introduction
Codeproject教程:https://www.codeproject.com/articles/768664/introduction-to-asp-net-boilerplate架构
ASP.NET ZERO 是 利用ABP框架搭建的模板项目,它会提供预建的页面及强大的基础设施架构。利用它提供的基础框架代码能让你快速的开发你的应用层。 app
5 in 1框架
多租户支持测试
Demo URL: http://nova-19555.demo.aspnetzero.com
Username: admin
Password: 123456编码
S.O.L.I.D是面向对象设计和编程(OOD&OOP)中几个重要编码原则(Programming Priciple)的首字母缩写。设计
缩写 | 英文 | 中文 |
---|---|---|
SRP | The Single Responsibility Principle | 单一责任原则 |
OCP | The Open Closed Principle | 开放封闭原则 |
LSP | The Liskov Substitution Principle | 里氏替换原则 |
ISP | The Interface Segregation Principle | 接口分离原则 |
DIP | The Dependency Inversion Principle | 依赖倒置原则 |