Configuring Ninject to return a list of results
问题 I'm using Ninject to resolve dependencies and it's working swimmingly until now. In this example, I actually need a list of objects initialized based on data stored in my App.config. However, Ninject keeps returning an empty list. The snippet below is an example of what I tried. I've included the constructors for the class hierarchy for some context. public ServiceSchedulerBuilder(IList<ITextExportService> textExportServices) { _textExportService = textExportServices; } public