MVCminiProfiler db profiler,如何获取与实体框架的dbConnection
我正在尝试将 MVC-mini-Profiler 集成到我的 mvc 项目中以帮助分析数据调用。我正在使用实体框架 4.1。在Profiler文档中说使用:
var conn = ProfiledDbConnection.Get(GetConnection());
GetConnection()需要返回System.Data.Common.DbConnection。有谁知道如何从当前上下文获取 System.Data.Common.DbConnection ?
I'm trying to integrate the MVC-mini-Profiler into my mvc project to help profile the data calls. I'm using the Entity Framework 4.1. In the Profiler documentation is says use:
var conn = ProfiledDbConnection.Get(GetConnection());
The GetConnection() needs to return a System.Data.Common.DbConnection. Does anyone know how to get the System.Data.Common.DbConnection from the current context?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有 2 个选项:
如果您已经创建了 EF 容器,则可以执行以下操作:
如果要使用新连接创建 EF 容器,则可以使用 EF 连接字符串创建新连接,如下所示:
You have 2 options:
If you already have the EF Container created, you can do this:
If you are going to create EF container using a new connection, you can create a new connection using EF connection string like so: