如何设置默认的 NHibernate CommandTimeOut 默认值
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在流畅的初始化方法中,您必须像这样传递几个参数,
请注意每个属性后面的“180”,这会将命令超时设置为 3 分钟
编辑:刚刚注意到您想按记录基本在记录上执行此操作,哎呀!
Inside the Fluent Initialise Method you must pass a couple of parameters as so,
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!