Filters – Introduction
In .Net Core, filters are used to run specified block of code in particular stages of request pipeline. They allow to run the same code across many request, therfore they help to avoid code replication and simplify application. Filters can be very useful in many various scenarios. For example, you can use filters when you… Continue reading Filters – Introduction