+1  A: 

You just have to declare a static class :

public static class MyExtensions
{
    // extension methods go here
}
Thomas Levesque
Example: http://stackoverflow.com/questions/922402/strongly-typed-asp-net-mvc-with-ado-net-entity-framework
Zack Peterson