使用 Linq DataCotext 配置 Mvc Mini Profiler

发布于 2024-12-02 16:05:08 字数 776 浏览 3 评论 0原文

我正在为应用程序使用 linq-to-sql 数据上下文。 我有以下 UserDataContext 类

实例化表。

var db = new UserDataContext();

,我使用How do I make Mvc Mini Profiler insert into that?

我尝试使用在另一个答案中找到的以下部分来扩展 UserDataContext,但代码从未被命中。

partial class UserDataContext
{    
public static UserDataContext Get()
    {
        var sqlConnection = new HelpSaudeAPDataContext().Connection;
        var profiledConnection = new MvcMiniProfiler.Data.ProfiledDbConnection(new SqlConnection("UserConnectionString"), MiniProfiler.Current);
        return new HelpSaudeAPDataContext(profiledConnection);
    }
}

不幸的是,没有带有 var db 连接的单点存储库,我可以简单地传递 mvc mini profiler 连接。

var db = UserDataContext(profilerConnection);

I'm using linq-to-sql datacontext for an application.
I have the following class

UserDataContext which I instantiate the table with

var db = new UserDataContext();

How do I make Mvc Mini Profiler insert into that?

I tried to extend UserDataContext with the following partial found at another answer, but the code is never hit.

partial class UserDataContext
{    
public static UserDataContext Get()
    {
        var sqlConnection = new HelpSaudeAPDataContext().Connection;
        var profiledConnection = new MvcMiniProfiler.Data.ProfiledDbConnection(new SqlConnection("UserConnectionString"), MiniProfiler.Current);
        return new HelpSaudeAPDataContext(profiledConnection);
    }
}

Unfortunately there is no single point repository with the var db connection where I could simply pass the mvc mini profiler connection with.

var db = UserDataContext(profilerConnection);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风透绣罗衣 2024-12-09 16:05:08

但是代码永远不会被命中。

嗯,打吧:

var db = UserDataContext.Get();

but the code is never hit.

Well, hit it:

var db = UserDataContext.Get();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文