I\'m trying to use the new mvc-mini-profiler with my EF4 based app, but I have no idea how to properly get a connection to my destination datasource.
Here\'s as far as I
You have to initialize the connection directly, as such:
var rootConn = new System.Data.SqlClient.SqlConnection(your_connection_string_minus_your_ef_junk);