Tagged Questions
11
votes
2answers
844 views
What's the best way to manage a dependency tree in .NET?
In my last project we used MSBuild as a scripting language. (yeah, really!) We also wrote hundreds of custom MSBuild tasks, for the parts that made more sense in C#. (I even wrote an MSBuild task to ...
7
votes
3answers
700 views
Dependency Injection vs Service Location
I am currently weighing up the advantages and disadvantages between DI and SL. However, I have found myself in the following catch 22 which implies that I should just use SL for everything, and only ...
4
votes
2answers
97 views
Consolidating ASP.NET MVC Controller Dependencies (StructureMap)
I'm looking at the controllers in my website, and most of their constructors look like this:
public SomeController(
IServiceOne serviceOne,
IServiceTwo serviceTwo,
ILoggingService ...
4
votes
4answers
242 views
What if Dependency Injection is not possible?
After much kicking and screaming, I'm starting to accept DI despite how much cleaner SL may seem as dependencies grow.
However, IMO there's still a significant show-stopper with regards to DI:
DI is ...
2
votes
2answers
142 views
How to Reverse Dependency for Class Factory moved to a Library
The following code works very well when all involved classes are in the same project (determineSubClass is a member of BaseClass):
protected static BaseClass determineSubClass(String p1, int p2, ...
2
votes
5answers
361 views
How to Avoid Coupling with an IoC Container
I'm in the process of developing an extensible framework using DI and IoC. Users must be able override existing functionality within the framework by dropping their own implementations into the ...
1
vote
2answers
47 views
Using Dependency Injection or are there simpler solutions?
In our project, we have a class KnowledgeBaseManager, which gets used by other classes as follows:
KnowledgeBaseManager manager = KnowledgeBaseManager.get();
manager.foo();
KnowledgeBaseManager ...
1
vote
0answers
350 views
Managing Constructor Dependency Injection (MS Unity)
I am building a multi-layered application and trying to keep the layers as much as possible so I'm using an IoC container for this purpose. Anyway, I'm trying to expand on this article to move my ...