News

Take advantage of global exception handling to avoid writing scads of boilerplate exception handling code in ASP.NET Core MVC.
Take advantage of filters and request logging middleware in Serilog to reduce log verbosity and generate useful log summaries in your ASP.NET Core MVC applications.
An "unhandled error" is just an error that you aren't handling. In ASP.NET MVC you can handle more errors by inserting an error handler inside your Controller: Just add an OnException method to your ...