编程语言
首页 > 编程语言> > Ultimate ASP.NET CORE 6.0 Web API --- 读书笔记(6)

Ultimate ASP.NET CORE 6.0 Web API --- 读书笔记(6)

作者:互联网

Getting Additional Resources

本文内容来自书籍: Marinko Spasojevic - Ultimate ASP.NET Core Web API - From Zero To Six-Figure Backend Developer (2nd edition)

6.1.1

Servicerepository中获取的数据,有可能是null的,所以我们需要验证这个,如果没有,需要返回NotFound这个结果给客户端,但是不能将这些逻辑溢出到控制器

那么,我们可以自定义一些错误,然后在特定时候抛出,然后在全局错误处理中捕捉,并返回特定的结果给客户端

  1. 首先,在Entities中创建自定义错误,Exceptions/NotFoundException,错误要继承Exception

  2. 再创建一个特定的错误类型CompanyNotFoundException,这个继承NotFoundException

public sealed class CompanyNotFoundException : NotFoundException
{
    public CompanyNotFoundException(Guid companyId)
        : base($"The company with id: {companyId} doesn't exist in the database.")
    {
    }
}
  1. 最后,在之前的错误中间件里面,捕捉这个错误,并返回特定结果

标签:CORE,ASP,Web,自定义,错误,CompanyNotFoundException,读书笔记,特定,NotFoundException
来源: https://www.cnblogs.com/huangwenhao1024/p/16383172.html