vote up 1 vote down star

I've seen several articles on various websites that propose resolving circular dependencies between .NET assemblies by using dependency injection. This may resolve the build errors but it's not really resolving the circular dependency, is it? To me, there seems to still be a logical error in the architecture. Am I crazy or do others agree 1) this is a less than stellar use of DI, and 2) not the appropriate way to solve circular dependency issues?

flag
Though in general a redesign should be done, here is a reference: stackoverflow.com/questions/1316518/… – Dykam Sep 20 at 13:22

3 Answers

vote up 2 vote down

If you have circular dependencies between two objects, it means you need a third object, on which the two objects will depend on, so they won't depend on each other. Here is an article that is the exact solution to your problem:

http://misko.hevery.com/2008/08/01/circular-dependency-in-constructors-and-dependency-injection/

link|flag
vote up 1 vote down

DI is not for circular dependency resolution but rather for facilitating the creation of nicely decoupled components and thus more testable ones.

link|flag
vote up 2 vote down

I agree with you. The first step in solving a circular dependency should be to look for errors in the architecture.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.