我已将NHibernate配置为将其生成的SQL输出到控制台。我已将以下内容添加到包含我想从NUnit运行的集成测试的DLL的app.config中:
<configSections>
<section name="nhibernate" type="System.Configuration.NameValueSectionHandler, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<nhibernate>
<add key="hibernate.connection.provider" value="NHibernate.Connection.DriverConnectionProvider" />
<add key="hibernate.show_sql" value="true" />
</nhibernate>
但是,SQL仍未输出到Console.Out。任何人都可以想到我可能需要设置另一个设置来查看我的NHibernate查询产生的SQL吗?
答案 0 :(得分:4)