.NET Core vs ASP.NET Core

后端 未结 5 2074
既然无缘
既然无缘 2020-12-02 04:46

What exactly is the difference between .NET Core and ASP.NET Core?

Are they mutually exclusive? I heard ASP.NET Core is built on .NET Core, but it can also be built

5条回答
  •  清歌不尽
    2020-12-02 05:18

    I would like to add that there is something called middleware injection in .NET Core request pipeline. If implemented correctly this is very useful, as it can intercept application exceptions automatically and makes logging much easier (in one place instead of logging in every method).

提交回复
热议问题