What's wrong with the following question? I get this error:
Oops! Your question couldn't be submitted because:
Your post appears to contain code that is not properly formatted as code. Please indent all code by 4 spaces using the code toolbar button or the CTRL+K keyboard shortcut. For more editing help, click the [?] toolbar icon.
I'm wondering if there's a possibility to change Dependency Injection configuration file at a runtime and force DI container to re-resolve object graph created before according to this new configuration.
To clarify my idea, I'll get you a simple example:
Imagine that you've got the following project structure:
Common.dlllibrary which containsIDoableinterface:
public interface IDoable
{
void Do();
}
LibraryA.dlllibrary which requiresCommon.dlland contains a realization ofIDoableinterface:
public class A : IDoable
{
public void Do()
{
Console.WriteLine("A.Do()");
}
}
LibraryB.dlllibrary which is quite similar toLibraryA.dll:
public class B : IDoable
{
public void Do()
{
Console.WriteLine("B.Do()");
}
}
- A
Test.execonsole application which references only toCommon.dlllibrary and uses DI container to resolve references to theIDoableinterface:
IDoable instance = _Container.Resolve<IDoable>();
instance.Do();
DI configuration file contains the following section (currently I'm using Autofac, but it doesn't really matter):
<autofac>
<components>
<component
type="LibraryA.A, LibraryA"
service="Common.IDoable, Common" />
</components>
</autofac>
So, when I run my Test.exe, I'll see the output from LibraryA.dll.
Everything is going OK so far. Now imagine that you want to switch your application from LibraryA.dll to LibraryB.dll in a runtime, without restarting the application. Any ideas? OK, you can use FileSystemWatcher to monitor changes in DI configuration file and reinitialize DI container every time the file is changed. So, if you'll change configuration file accordingly and call again
IDoable instance = _Container.Resolve<IDoable>();
instance.Do();
you'll see the output from LibraryB.dll.
OK, finally we're facing the problem. When using DI, you don't resolve references every time before using them. Normally, you resolve object graph in some initialization code. So, even after you changed the config file and DI container is reconfigured, your previously resolved objects stay the same until you re-resolve them. And there could be a lot of such objects, so calling Resolve<T>() every time before using object may be very painful.
So, how would you on-the-fly update previously resolved objects after changing DI configuration? Or maybe there is some DI container already able to do that automatically?

<pre><code>as being something you should have indented. Does it work if you get rid of the manual code blocks, and indent all code underneath the list items by 8 spaces from the left? – Tim Stone Dec 23 '11 at 15:48