Hi folks,
I can't seem to figure out how to define a object as a singleton AND define two arguments for the constructor.
I can do either / or .. just not at the same time.
Eg. (this doesn't work)...
ForRequestedType<IFoo>()
.TheDefaultIsConcreteType<Foo>()
.CacheBy(InstanceScope.Singleton)
.WithCtorArg("alpha").EqualToAppSetting("Alpha")
.WithCtorArg("beta").EqualToAppSetting("Beta");
Suggestions?