我将 Ninject.Web.Common 安装到我的项目中。(App_Start/NinjectWebCommon.cs)
NinjectWebCommon 未注入自定义提供程序。
public class CustomMembershipProvider : MembershipProvider
{
private IUserRepository userRepository {get; set; } // User Table Db Context. Is injected into the injection I want here.
}
自定义提供程序注入 我能做什么?