开发者

Swap out repositories with a flag

开发者 https://www.devze.com 2023-03-10 08:47 出处:网络
I have an IRepository< T > interface with many T\'s and several implementations (on-demand DB, web service, etc.). I use AutoFac to register IRepository\'s for many T\'s depending on the kind of re

I have an IRepository< T > interface with many T's and several implementations (on-demand DB, web service, etc.). I use AutoFac to register IRepository's for many T's depending on the kind of repository I want for each T.

I also have a .NET-caching-based implementation that looks for T's in cache and then calls a 'real' IRepository.Find to resolve a cache miss. It is constructed something like this:

new CachingRepository(realRepository, cacheImplementation);

I would like to use a configuration flag to decide if AutoFac serves up caching-based IRepository's or the 'real things.' It seems like 'realRepository' comes from asking AutoFac to resolve IRepository < T > but then what do clients get when they ask to resol开发者_JAVA技巧ve the same interface? I want them to get the CachingRepository if the flag is set.

I can't get my head around how to implement this flag-based resolution. Any ideas?


Simplest Option: Conditional Registration Delegate

There are a number of ways to do this. Using your cache setting in a registration delegate is probably the simplest (and illustrates the power of delegate registrations):

var builder = new ContainerBuilder();

bool cache = GetCacheConfigSetting(); //Up to you where this setting is.    

builder.Register(c => cache ? (IRepository<string>)new CachingRepository<string>(new RealRepos<string>(), new CacheImpl()) : new RealRepos<string>());

The code above will only read the cache config once. You could also include the GetCacheConfigSetting() in the registration delegate. This would result in the setting being checked on every Resolve (assuming InstancePerDependency).

Other Options: Autofac Decorators and Modules

There are some more advanced features of Autofac that you may also find useful. The cache class in your question is an example of the Decorator Pattern. Autofac has explicit support for decorators. It also has a nice model for structuring your registrations and managing configuration information, called Modules.

0

精彩评论

暂无评论...
验证码 换一张
取 消