static RedisCacheProvider() { config = ConfigurationManager.GetSection("nhibernateRedisCache") as RedisCacheProviderSection; if (config == null) { config = new RedisCacheProviderSection(); } }
static RedisCacheProvider() { providerSection = ConfigurationManager.GetSection("nhibernateRedisCache") as RedisCacheProviderSection ?? new RedisCacheProviderSection(); }