Is there any way to register multiple IInterceptor in nhibernate
this dose not work in hhibernate 3.1.0.4000
config.SetInterceptor(new ContextAwareInterceptor());
config.SetInterceptor(new ContextAwareCommandInterceptor());
config.SetInterceptor(new SqlInterceptor());
You can’t. A session can only have one interceptor.
You should look into Events instead.