I've been cracking my head over installing a Windsor container using a custom configuration object. It seems simple, but apparently there's something important I'm just not getting. I'll be grateful if you could help me fill this gap.
I have a configuration class:
class MyConfiguration
{
int SomeIntValue;
DateTime SomeDateValue;
Action<string> SomeActionValue;
}
I want to pass these configuration values as constructor parameters into the registered implementations. I guess the registration should look something like:
public class MyInstaller : IWindsorInstaller
{
public void Install(IWindsorContainer container, IConfigurationStore store)
{
container.Register(Component.For<IFoo>.ImplementedBy<Foo>
.Parameters(Parameter.ForKey("parameter1").Eq( INSERT VALUE HERE (?) );
}
}
So how do I take these values and pass them into the installer? Should I use this IConfigurationStore parameter? If so, how do I fill it up and what do I do with it?
Besides, it seems like all the configurations objects can only store string values, so how can I pass values which are not strings (such as DateTime)?
Thanks and have a great weekend.
Resolve<MyConfiguration>().SomeDateValue- right? And then, how do I take this date value and send it as a parameter toFoo's constructor, given thatParameter ... Eq()only accepts a string? – Ilya Kogan Mar 25 '11 at 16:54