正确理解DTO、值对象和POCO
https://www.cnblogs.com/redmoon/archive/2015/04/29/4467485.html
ASP.NET Core 配置系统
https://www.cnblogs.com/RainingNight/p/strongly-typed-options-configure-in-asp-net-core.html
net core中服务注入
- ConfigureServices
正如StartUp类中注释描述,该函数主要用于把指定服务注册到容器中。
// This method gets called by the runtime. Use this method to add services to the container.
- Configure
使用该方法注册Middleware。
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
具体讲解可参见:https://www.cnblogs.com/vipyoumay/p/5640645.html
在指定作用域内注册服务:https://www.cnblogs.com/TomXu/p/4496440.html
net core实战
https://www.cnblogs.com/jackcao/p/9928879.html