上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 112 下一页
摘要: public class ApiException : Exception { public int ErrorCode { get; } public string ErrorMessage { get; } public ApiException(int errorCode, string er 阅读全文
posted @ 2023-12-07 15:00 ProZkb 阅读(9) 评论(0) 推荐(0) 编辑
摘要: public enum ApiResponseStatus { Success, Error } public enum ApiErrorCode { InvalidRequest = 1000, Forbidden = 2000, NotFound = 3000, InternalServerEr 阅读全文
posted @ 2023-12-07 14:00 ProZkb 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 在 ASP.NET Core 中,当应用程序处于开发环境时,默认情况下会加载 appsettings.json 和 appsettings.Development.json 文件中的配置, 并且 appsettings.Development.json 中的配置会覆盖 appsettings.jso 阅读全文
posted @ 2023-12-06 16:43 ProZkb 阅读(379) 评论(0) 推荐(0) 编辑
摘要: .net下优秀的IOC容器框架Autofac的使用方法,实例解析 - 知乎 (zhihu.com) UseServiceProviderFactory(使用服务提供商) 是在 ASP.NET Core 中用来替换默认的依赖注入容器工厂的方法。通过使用不同的容器工厂,可以使用第三方的依赖注入容器(如 阅读全文
posted @ 2023-12-06 15:22 ProZkb 阅读(580) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { { Person person = new Person() { Name = "Test", Age = 10, }; if (person.Name == default || EqualityComparer<int>.Def 阅读全文
posted @ 2023-10-08 22:09 ProZkb 阅读(13) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 112 下一页