Author: SSWUG Research

Community

You Take Too Long

(dfitzjarrell) Sometimes statements take longer than you’d like to complete. This can happen for a number of reasons including data changes, table growth, stale statistics and the occasional optimizer bug you haven’t encountered before. When it’s a SQL query that is misbehaving it’s pretty easy to f

Community

ASP.NET MVC Custom Action Filters

(Suprotim Agarwal) Filters in ASP.NET MVC are a way to apply cross-cutting logic at the controller level. Some examples of cross-cutting logic is Security and Logging. Security is a cross cutting concern because, once enabled, we need to apply it for all incoming requests in the web Application.