tags:

views:

48

answers:

2

Before NHibernate Profiler was released I was parsing through logs generated by log4net. Today I use NHibernate Profiler, but what other tools / techniques exist that allow a developer to view the dynamic SQL generated by nhibernate?

+3  A: 

Sql profiler, but NHibernate profiler is best tool to do it.

Sly
+3  A: 

Check this link: http://szahariev.blogspot.com/2010/01/nhibernate-display-executed-sql-at.html

I've never tried it because we bought NHProf, but I think it has potential when paired with a IsDevelopment flag in a config file.

Mike C.