Is not possible to instantiate concrete classes from their base classes, this a severe limitation.
BaseClass base = get<BaseClass>(); // Instantiate ConcreteClass
The code below would probably be an API breaking change:
factory<CacheStore>(() => FileCacheStore(inject()))
Is not possible to instantiate concrete classes from their base classes, this a severe limitation.
The code below would probably be an API breaking change: