我在我的 ASP.NET MVC 项目中使用 Ninject 进行依赖注入。我有很多存储库类,每个类都在构造函数中使用连接字符串参数。
目前对于每个映射,我也必须传递连接字符串。
前任。
Bind<INewsRepository>().To<NewsRepository>().WithConstructorArgument("connectionString", "Data Source=...");
Bind<IProductsRepository>().To<ProductsRepository>().WithConstructorArgument("connectionString", "Data Source=...");
是否可以将“connectionString”直接绑定到全局级别的配置值,而不是在每个绑定中指定?