gpt4 book ai didi

c# - 温莎城堡 : Conditional registration of open generic types

转载 作者:行者123 更新时间:2023-11-30 17:43:00 25 4
gpt4 key购买 nike

我有以下内容:

class Repository<T> : IRepository<T>
interface ISuperRepository<T> : IRepository<T>
class SuperRepository<T> : ISuperRepository<T>
interface ISuperType

我想在 CaSTLe Windsor DI 中有条件地注册 IRepository<T> , 如果 TISuperType , 然后提供 ISuperRepository<T> .否则,提供 IRepository<T>.

例如,如果 A : ISuperType , 那么我要 Resolve<IRepository<A>>提供SuperRepository<A> , 和 Resolve<IRepository<B>>提供Repository<B> .

我怎样才能做到这一点?

最佳答案

CaSTLe Windsor 不支持这样的事情,但是你可以用一个简单的辅助方法来实现它:

public static void RegisterAccordingToISuperType<T>(this IWindsorContainer container)
{
if (typeof (T).GetInterfaces().Contains(typeof (ISuperType)))
container.Register(Component.For<IRepository<T>>()
.ImplementedBy<SuperRepository<T>>());
else
container.Register(Component.For<IRepository<T>>()
.ImplementedBy<Repository<T>>());
}

然后是注册:

container.RegisterAccordingToISuperType<SuperType>();
container.RegisterAccordingToISuperType<int>();

决心将:

var super = container.Resolve<IRepository<SuperType>>();
var intRepo = container.Resolve<IRepository<int>>();

另一个选项是 Component.For 中的额外参数。然后获取继承自 Type( For example ) 的所有类型并注册它们。

private static void Register(...)
{
foreach (var type in GetInheriteTypes())
{
container.Register(Component.For(typeof(IRepository<>),type)
.ImplementedBy(typeof(SuperRepository<>)));
}
container.Register(Component.For(typeof(IRepository<>))
.ImplementedBy(typeof(Repository<>)));
}

private static IEnumerable<Type> GetInheriteTypes()
{
var listOfBs = (from domainAssembly in AppDomain.CurrentDomain.GetAssemblies()
from assemblyType in domainAssembly.GetTypes()
where assemblyType.GetInterfaces().Contains(typeof(ISuperType))
select assemblyType).ToArray();
return listOfBs;
}

关于c# - 温莎城堡 : Conditional registration of open generic types,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31501966/

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