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 | 依賴倒置原則 |