vote up 3 vote down star

I have the following config file for nhibernate:

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
  <session-factory>
    <property name="connection.connection_string">Server=.\SQLEXPRESS;Database=mydb;Integrated Security=True;</property>
    <property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property>
    <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
    <property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
    <property name="connection.release_mode">auto</property>
    <property name="adonet.batch_size">500</property>

    <property name="show_sql">true</property>

  </session-factory>
</hibernate-configuration>

But the sql doesn't show in the output window of visual studio. Is it mandatory to install log4net ? Or show_sql should work alone ?

flag

50% accept rate

4 Answers

vote up 4 vote down check

There is something called NHibernate profiler you can use.

http://nhprof.com/

it's pricey but it works and it has a 30 day trial.

link|flag
vote up 3 vote down

show_sql outputs to Console.Out - it's most useful when running integration tests

link|flag
does it mean no way to see it in VS? Does it mean I must install log4net? – Nicolas Cadilhac Jan 24 at 1:38
TestDriven.NET sends Console.Out to the output window in VS. That's how I use show_sql – Matt Hinze Jan 26 at 16:41
vote up 0 vote down

There's really nothing to install in log4net, it's just a regular DLL which you simply reference in your project. It's very easy to setup to output to the console, just this line when the app starts:

log4net.Config.BasicConfigurator.Configure();
link|flag
vote up 0 vote down

To show the sql in the output window of Visual Studio, configure log4net to use TraceAppender in your log4net config. This:

<appender name="DebugSQL" type="log4net.Appender.TraceAppender">  
<layout type="log4net.Layout.PatternLayout">  
        <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />  
</layout>

Then this:

<logger name="NHibernate.SQL" additivity="false">
<level value="DEBUG" />
<appender-ref ref="DebugSQL" />

EDIT: I can't seem to format this correctly here. See this link for code example

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.