I am trying to use the mvc-mini-profiler with MVC3 and keep getting the following error

Unable to determine the provider name for connection of type 'MvcMiniProfiler.Data.ProfiledDbConnection'

Below is the code that I am using to try and instatiate my Context.

DbConnection conn = new MySqlConnection(
    ConfigurationManager.ConnectionStrings["ConnString"].ConnectionString);

var profiledConnection = MvcMiniProfiler.Data.ProfiledDbConnection.Get(conn);
return new DB(profiledConnection);

And here is the DB Context Class.

public class DB:DbContext, Stats.Data.IDB
{
    public DB(DbConnection conn)
        : base(conn, true)
    {

    }...
link|improve this question

64% accept rate
A fix is coming RSN. – Craig Stuntz Jun 9 '11 at 16:50
Did you ever find a solution for this? I've got the same problem. Thanks – lancscoder Jun 14 '11 at 19:39
Simon G. I added a bug and they say that a proposed patch has been submitted but it has not been patched yet, so no luck so far – runxc1 Bret Ferrier Jun 14 '11 at 20:18
Can you try latest, this should all work fine now. – Sam Saffron Jul 19 '11 at 8:13
feedback

1 Answer

up vote 2 down vote accepted

As of version 1.5 this is now supported see: http://code.google.com/p/mvc-mini-profiler

The step to configure it are listed here: Using mvc-mini-profiler database profiling with Entity Framework Code First

link|improve this answer
updated your answer ... – Sam Saffron Jul 19 '11 at 8:12
Great! Powerful! – Chance Jul 19 '11 at 12:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.