MVCGrid.Net 如何使用 Ninject 在 MVCGridConfig class 中注入服务?
MVCGrid.Net How can I inject a service in the MVCGridConfig class using Ninject?
我使用 Ninject 作为我的 ASP.Net MVC 应用程序的依赖注入器。
但是,MVCGridConfig 是静态的class。
如何在 MVCGridConfig class 中注入我的 ICoursesService 以便为 table 检索必要的数据?
非常感谢!
我怀疑你能否注入静态 class,但你可以使用
拉取它
var svc = DependencyResolver.Current.GetService<ICoursesService>();
我使用 Ninject 作为我的 ASP.Net MVC 应用程序的依赖注入器。
但是,MVCGridConfig 是静态的class。
如何在 MVCGridConfig class 中注入我的 ICoursesService 以便为 table 检索必要的数据?
非常感谢!
我怀疑你能否注入静态 class,但你可以使用
拉取它var svc = DependencyResolver.Current.GetService<ICoursesService>();