装饰器模式的 StructureMap RegistrationConvention

发布于 2024-12-11 21:01:29 字数 982 浏览 2 评论 0原文

我使用装饰器模式来实现存储库的缓存,如下所示:

IFooRepository()
IFooRepository FooRepository()
IFooRepository CachedFooRepository(IFooRepository fooRepository)

缓存存储库检查请求对象的缓存,如果不存在,则调用 FooRepository 来检索并存储它。我目前正在使用以下方法向 StructureMap 注册这些类型:

For<IFooRepository>().Use<CachedFooRepository()
    .Ctor<IFooRepository>().Use<FooRepository>();

这工作正常,但随着缓存存储库数量的增长,单独注册每个类型变得很笨拙并且容易出错。鉴于我有一个共同的约定,我尝试使用自定义 IRegistrationConvention 扫描我的程序集,但我似乎无法弄清楚如何将 FooRepository 传递到 void Process(Type type 中的 CachedFooRepository 的构造函数,Registry注册表)功能。

我找到了执行类似操作的示例:

Type interfaceType = type.GetInterface(type.Name.Replace("Cached", "I"));
registry.AddType(interfaceType, type);

Type interfaceType = type.GetInterface(type.Name.Replace("Cached", "I"));
registry.For(interfaceType).Use(type);

但这两种方法都不允许我链接 .Ctor。我缺少什么?有什么想法吗?

I'm using the decorator pattern to implement caching for my Repositories as such:

IFooRepository()
IFooRepository FooRepository()
IFooRepository CachedFooRepository(IFooRepository fooRepository)

The Cached repository checks the cache for the requested object and if it doesn't exist, calls the FooRepository to retrieve and store it. I'm currently registering these types with StructureMap using the following method:

For<IFooRepository>().Use<CachedFooRepository()
    .Ctor<IFooRepository>().Use<FooRepository>();

This works fine, but as the number of cached repositories grows, registering each one individually is becoming unwieldy and is error prone. Seeing as I have a common convention, I'm trying to scan my assembly using a custom IRegistrationConvention, but I can't seem to figure out how to pass the FooRepository to the constructor of CachedFooRepository in the void Process(Type type, Registry registry) function.

I've found examples to do something like:

Type interfaceType = type.GetInterface(type.Name.Replace("Cached", "I"));
registry.AddType(interfaceType, type);

or

Type interfaceType = type.GetInterface(type.Name.Replace("Cached", "I"));
registry.For(interfaceType).Use(type);

But neither method will allow me to chain the .Ctor. What am I missing? Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文