dependency-injection
Dependency Injection "nesting" in related methods
We\'re using DI and Unity to work with different dependencies (generally, database and repository classes, dto to entity mappers, etc)[详细]
2023-04-03 04:15 分类:问答Why so many terms to say the same thing? IoC and DIP
IoC = Inversion Of Control DIP = Dependency Inversion Principle (D in S开发者_开发问答.O.L.I.D.)[详细]
2023-04-02 18:42 分类:问答Ways of keeping configuration code out of logic code using Dependency Injection
How can keep all the configuration file code out of my logic code using Settings (ApplicationSettingsBase) and Dependency Injection?[详细]
2023-04-02 17:47 分类:问答How to inject context using RoboGuice in Android?
I would like to inject my context to my Utility classes, I have seen examples using 开发者_如何学运维Static fields, Are there any ways to do it with out static fields?I tend to use a Provider to injec[详细]
2023-04-02 14:58 分类:问答IOC and Silverlight
In mvc asp.net, I can override a factory to create my controllers, and so put a reference to my IOC just here. Doing So every interface needed by the constructor of my controllers will be feeded by my[详细]
2023-04-02 12:25 分类:问答How to inject dependency for hierarchy in Spring.Net
How can I define configuration to inject dependencies to the following hierarchy of objects: RootObject[详细]
2023-04-02 10:15 分类:问答In asp.net-mvc, is there a more elegant way using IOC to inject mutiple repositories into a controller?
I have an asp.net-mvc website and i am using ninject for IOC and nhibernate for my ORM mapping Here is my IOC binding code:[详细]
2023-04-02 08:18 分类:问答DynamicProxy Generation Speed
I\'m trying to troubleshoot some startup time concerns. After doing some profiling, I\'ve found the main culprit is ClassProxyGenerator.GenerateCode. This takes 400-600ms per type the first time. So i[详细]
2023-04-02 07:55 分类:问答Suggestions for "Blendable" ViewModelLocator with Unity 2.0
I have an suite of existing Silverlight applications using the MVVM pattern to separate Views and ViewModels.We use Unity 2.0 for an IoC container to inject dependencies into the ViewModel classes (an[详细]
2023-04-02 03:47 分类:问答MVC3: proper place to add a dependency on a logger class?
I have an MVC3 app with a simple Log service. All my services are invoked using Microsoft\'s Unity Dependency Injection container.[详细]
2023-04-02 02:19 分类:问答