Skip to content

Instantly share code, notes, and snippets.

@hvitorino
Created March 13, 2014 19:13
Show Gist options
  • Save hvitorino/9534881 to your computer and use it in GitHub Desktop.
Save hvitorino/9534881 to your computer and use it in GitHub Desktop.
public class SqlStatementInterceptor : EmptyInterceptor
{
public override NHibernate.SqlCommand.SqlString OnPrepareStatement(NHibernate.SqlCommand.SqlString sql)
{
Trace.WriteLine(sql.ToString());
return sql;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment