如何设置默认的 NHibernate CommandTimeOut 默认值

发布于 2024-12-15 21:36:45 字数 340 浏览 0 评论 0原文

如何使用 Castle ActiveRecord 设置 Session.DBCommand.CommandTimeOut NHibernate 默认值?

此配置行不起作用。

<activerecord >
  <config>
      <add key="command_timeout" value="60"/>
  </config>
</activerecord>

编辑:我需要一些代码来在创建命令时更改 CommandTimeOut 值,那么反射来动态设置该值怎么样?或者PostSharp?有人知道怎么做吗?

How can i set an Session.DBCommand.CommandTimeOut NHibernate default value with Castle ActiveRecord?

this config line don't work.

<activerecord >
  <config>
      <add key="command_timeout" value="60"/>
  </config>
</activerecord>

edit: i need some code that changes the CommandTimeOut value when the command is created, what about reflection to set dynamically the value? or PostSharp? someone knows how to?

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

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

发布评论

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

评论(1

写下不归期 2024-12-22 21:36:45

在流畅的初始化方法中,您必须像这样传递几个参数,

public static void Initialise(string connStr)
    {
        _Factory = Fluently.Configure().Database(
                MsSqlConfiguration.MsSql2005
                .ConnectionString(connStr))
                .Mappings(m => m.FluentMappings.AddFromAssemblyOf<SessionHandler>())
                .ExposeConfiguration(cfg =>
                {
                    // This will set the command_timeout property on factory-level
                    cfg.SetProperty(NHibernate.Cfg.Environment.CommandTimeout, "180");
                    // This will set the command_timeout property on system-level
                    NHibernate.Cfg.Environment.Properties.Add(NHibernate.Cfg.Environment.CommandTimeout, "180");

                })
                .BuildSessionFactory();
    }

请注意每个属性后面的“180”,这会将命令超时设置为 3 分钟

编辑:刚刚注意到您想按记录基本在记录上执行此操作,哎呀!

Inside the Fluent Initialise Method you must pass a couple of parameters as so,

public static void Initialise(string connStr)
    {
        _Factory = Fluently.Configure().Database(
                MsSqlConfiguration.MsSql2005
                .ConnectionString(connStr))
                .Mappings(m => m.FluentMappings.AddFromAssemblyOf<SessionHandler>())
                .ExposeConfiguration(cfg =>
                {
                    // This will set the command_timeout property on factory-level
                    cfg.SetProperty(NHibernate.Cfg.Environment.CommandTimeout, "180");
                    // This will set the command_timeout property on system-level
                    NHibernate.Cfg.Environment.Properties.Add(NHibernate.Cfg.Environment.CommandTimeout, "180");

                })
                .BuildSessionFactory();
    }

Notice the "180" after each property, this will set the command timeout to be 3 minutes

edit: just noticed you want to do this on a record by record basic, whoops!

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