Net Core教程

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. 最后,在之前的错误中间件里面,捕捉这个错误,并返回特定结果
这篇关于Ultimate ASP.NET CORE 6.0 Web API --- 读书笔记(6)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!