How do I view the SQL that is generated by nHibernate? version 1.2
|
3
|
|
|
|
|
|
You can put something like this in your app.config/web.config file : in the configSections node :
in the configuration node :
And don't forget to call
at the startup of your application, or to put
in the assemblyinfo.cs In the configuration settings, set the "show_sql" property to true. |
|||
|
|
|
|
In the configuration settings, set the "show_sql" property to true. This will cause the SQL to be output in NHibernate's logfiles courtesy of log4net. |
||
|
|
|
Use sql server profiler. EDIT (1 year later): As @Toran Billups states below, the NHibernate profiler Ayende wrote is very very cool. |
|||
|
|
|
There is a good reference for NHibernate logging at: How to configure Log4Net for use with NHibernate. It includes info on logging all NHibernate-generated SQL statements. |
|||
|
|
|
|
Nhibernate Profiler is an option, if you have to do anything serious. |
||
|
|
|
|
You can also try NHibernate Profiler (30 day trial if nothing else). This tool is the best around IMHO. This will not only show the SQL generated but also warnings/suggestions/etc |
||
|
