Questions tagged «autofac»




2
Autofac:解决类型的所有实例
鉴于以下注册 builder.Register<A>().As<I>(); builder.Register<B>().As<I>(); builder.Register<C>().As<I>(); var container = builder.Build(); 我正在寻求将类型I的所有实例解析为IEnumerable(数组或集合都没有关系)。 在温莎,我会写以下内容。 foreach(I i in container.ResolveAll<I>()) { ... } 我正在从温莎迁移到Autofac 1.4.4.561,但看不到等效的语法。
68 c#  autofac 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.