I've been learning MVC for the last couple of months and am following the book Pro ASP.NET MVC 2 but coding for MVC 4 in Visual Studio 2012 Express. I've completed the SportsStore example, and have now been trying to add the SqlPerformanceMonitorModule to SportsStore. Sadly the book isn't very specific (or perhaps that's good since it forced me to do some research). The book says I should do this:
var dc = new DataContext(connectionString);
dc.Log = (StringWriter) HttpContext.Items["linqToSqlLog"];
productsTable = dc.GetTable<Product>();
However, HttpContext is not available in the SqlProductsRepository, so that didn't work out of the box. After fiddling around a bit and reading about the HttpContextBase/HttpContextWrapper I came up with this solution:
public SqlProductsRepository(string connectionString, HttpContextBase httpContext)
{
var dc = new DataContext(connectionString);
dc.Log = (StringWriter) httpContext.Items["linqToSqlLog"];
productsTable = dc.GetTable<Product>();
}
Which I inject using Ninject with this code:
Bind<IProductsRepository>()
.To<SqlProductsRepository>()
.WithConstructorArgument("connectionString",
ConfigurationManager.ConnectionStrings["MSSQL"].ConnectionString)
.WithConstructorArgument("httpContext",
ninjectContext => (HttpContextBase)new HttpContextWrapper(HttpContext.Current)
);
This works, but I'm wondering if it's the proper way to do it with lose coupling to make it unit testable? If it's correct I thought it was also a good idea to get the solution up here for others to find.