可能重复:
Using mvc-mini-profiler database profiling with Entity Framework Code First
我有mvc-mini-profiler工作正常,除了挂钩到EF。
我使用下面的代码设置我的EF,并且connectionString被命名为EFDbContext以匹配。 EF工作正常(我得到数据)。我添加了构造函数,所以我可以提供与ProfiledDbConnection的连接,但我很确定这是不正确的!?!不幸的是,从文档我不知道我应该做什么??
public class EFDbContext : DbContext
{
public DbSet<Product> Products { get; set; }
public EFDbContext()
{
ProfiledDbConnection.Get(this.Database.Connection);
}
}