标签: .net ninject
任何人都可以帮助将以下绑定从Ninject移植到TinyIOC:
Bind<Func<Type, IJob>>().ToConstant(type => (IJob)Kernel.Get(type));
答案 0 :(得分:2)
我没有使用过TinyIOC,但您可以尝试以下方法。
container.Register<Func<Type, IJob>>(type => (IJob)container.Resolve(type));