I am using linq to Nhibernate to fire some select query to data base.
My question is, how do I know, the query generated by Fluent NHibernate?
With Fluent NHibernate, you can turn on show_sql like this:
show_sql
Fluently.Configure() .Database( MsSqlConfiguration.MsSql2005.ShowSql().ConnectionString(...) )...
NHibernate will now print every sql statement to Console.Out.
Console.Out