gpt4 book ai didi

c# - 为程序集中的所有类型创建 LinFu 拦截器

转载 作者:太空宇宙 更新时间:2023-11-03 11:40:42 24 4
gpt4 key购买 nike

我正在尝试为我的 DAL 程序集中的所有方法创建 LinFu 拦截器。虽然我可以做这样的事情:

[Intercepts(typeof(IFirstRepository))]
[Intercepts(typeof(ISecondaryRepository))]
[Intercepts(typeof(IIAnotherRepository))]
public class DalInterceptor : IInterceptor, IInitialize
{
...
}

这变得非常困惑,每次将新存储库添加到程序集时都需要手动更新。

有没有办法为程序集中的每个类型自动创建一个代理类?

更新:

我已经根据作者本人(Laureano 先生)的建议更新了我的代理构建器,所以我现在有了这个:

Func<IServiceRequestResult, object> createProxy = request =>
{
var proxyFactory = new ProxyFactory();
DalInterceptor dalInterceptor = new DalLiteInterceptor();
return proxyFactory.CreateProxy<object>(dalInterceptor);
};

拦截器设置如前。我现在遇到的问题是代理对象不包括原始对象的构造函数和方法(我猜是因为我在通用创建方法中使用对象)。

我只是将其转换回所需的类型,还是我做错了什么根本性的事情?

谢谢。

最佳答案

看起来你在尝试使用 LinFu 的 IOC 容器来拦截容器实例化的各种服务。事实证明,LinFu 有一个名为 ProxyInjector 的内部类,可让您决定应拦截哪些服务以及应如何为每个服务实例创建代理。这是示例代码:

Func<IServiceRequestResult, bool> shouldInterceptServiceInstance = request=>request.ServiceType.Name.EndsWith("Repository");

Func<IServiceRequestResult, object> createProxy = request =>
{
// TODO: create your proxy instance here
return yourProxy;
};

// Create the injector and attach it to the container so that you can selectively
// decide which instances should be proxied
var container = new ServiceContainer();
var injector = new ProxyInjector(shouldInterceptServiceInstance, createProxy);
container.PostProcessors.Add(injector);

// ...Do something with the container here

编辑:我刚刚修改了 ProxyInjector 类,现在它是一个公共(public)类,而不是 LinFu 中的内部类。试试看,如果有帮助请告诉我。

关于c# - 为程序集中的所有类型创建 LinFu 拦截器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4876839/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com