Other News

Uncategorized

Filtered Indexes

Filtered Indexes As you may or may not know there are two basic types of indexes available in SQL Server. Clustered and Non-Clustered. A table (or view) having a clustered index stores the data within the clustered index leaf nodes. A Non-Clustered index stores pointers to the location of the data within the clustered index, if one exists, or the […]

Community

ASP.NET MVC 3 Filters

(Brian Mains) The ASP.NET MVC framework applied a popular technique of aspect-oriented programming, which incorporates the idea of using attributes to apply to a controller or action. These attributes are filters that can affect the runtime process. An action can run before or after an action or res