摘要:
Abp 依赖注入 官方文档 https://docs.abp.io/zh-Hans/abp/latest/Dependency-Injection 基本使用 直接注册 context.Services.AddTransient<IGreetService, GreetService>(); 实现接口 阅读全文
摘要:
验证 Validation 官方文档 https://docs.abp.io/zh-Hans/abp/latest/Validation 哪里可以验证? 哪里都行 怎么验证? 1. 需要验证的类型(实体、DTO、Options 之类的)实现 IValidatableObject 例如: public 阅读全文