请帮助我使用 Unity.Mvc5 一次注册所有服务和存储库。
我现在正在使用以下场景。 但是在这种情况下,我必须将每个服务和存储库注册到Unity容器。
有没有办法通过扫描程序集来注册所有服务和存储库(如StructureMap或Lamar提供(或者别的什么。
提前谢谢:)。
DependencyResolver.SetResolver(new UnityDependencyResolver(container));
container.RegisterType<IAbcRepository, AbcRepository>();
container.RegisterType<IAbcService, AbcService>();
我在这里的一个问题中找到了一个解决方案。下面的代码按预期工作。
这有什么缺点,将来会产生任何问题吗? 或者除了这个之外,注册所有存储库和服务的最佳方法是什么?
public static class UnityConfig
{
public static void RegisterComponents()
{
var container = new UnityContainer();
DependencyResolver.SetResolver(new UnityDependencyResolver(container));
// container.RegisterType<IAbcRepository, AbcRepository>();
// container.RegisterType<IAbcService, AbcService>();
container.RegisterTypes(AllClasses.FromAssemblies(typeof(Repository).Assembly), WithMappings.FromAllInterfaces, GetName, GetLifetimeManager);
container.RegisterTypes(AllClasses.FromAssemblies(typeof(Service).Assembly), WithMappings.FromAllInterfaces, GetName, GetLifetimeManager);
}
static bool IsNotificationHandler(Type type)
{
return type.GetInterfaces().Any(x => x.IsGenericType);
}
static LifetimeManager GetLifetimeManager(Type type)
{
return IsNotificationHandler(type) ? new ContainerControlledLifetimeManager() : null;
}
static string GetName(Type type)
{
return IsNotificationHandler(type) ? string.Format("HandlerFor" + type.Name) : string.Empty;
}
}
在大型应用中使用多少安全?