GiorgioG wrote:
Is it possible to simply disable caching of all kinds (session level)? Even though I've set the (seemingly) appropriate properties to disable L2 cache and query cache (for good measure), I still can't get NHibernate to stop caching data locally.
Thanks!
-Giorgio
*Crap* sorry, meant to post this in the NHibernate forum.
set the hibernate.cache.provider_class property to an empty cache provider class. It should simply report any request as a mis-hit. I come from the Java work (that happens when you mix up the forums :d) and in Java hibernate we have a NoCacheProvider implementation. There might be a similar for the NHibernate one too.
Farzad-