Ninject:构造函数参数

时间:2012-12-15 14:57:38

标签: dependency-injection asp.net-mvc-4 ninject

我正在使用Ninject和ASP.NET MVC 4.我正在使用存储库并希望进行构造函数注入以将存储库传递给其中一个控制器。

这是我的Repository界面:

public interface IRepository<T> where T : TableServiceEntity
{
    void Add(T item);
    void Delete(T item);
    void Update(T item);
    IEnumerable<T> Find(params Specification<T>[] specifications);
    IEnumerable<T> RetrieveAll();
    void SaveChanges();
}

以下AzureTableStorageRepositoryIRepository<T>的实现:

public class AzureTableRepository<T> : IRepository<T> where T : TableServiceEntity
{
    private readonly string _tableName;
    private readonly TableServiceContext _dataContext;

    private CloudStorageAccount _storageAccount;
    private CloudTableClient _tableClient;

    public AzureTableRepository(string tableName)
    {
        // Create an instance of a Windows Azure Storage account
        _storageAccount = CloudStorageAccount.Parse(ConfigurationManager.ConnectionStrings["StorageConnectionString"].ConnectionString);

        _tableClient = _storageAccount.CreateCloudTableClient();
        _tableClient.CreateTableIfNotExist(tableName);
        _dataContext = _tableClient.GetDataServiceContext();
        _tableName = tableName;
    }

请注意所需的tableName参数,因为我使用通用表存储库将数据持久保存到Azure。

最后我有以下控制器。

public class CategoriesController : ApiController
{
    static IRepository<Category> _repository;

    public CategoriesController(IRepository<Category> repository)
    {
        if (repository == null)
        {
            throw new ArgumentNullException("repository");
        }

        _repository = repository;
    }

现在我想将一个存储库注入控制器。所以我创建了一个包含绑定的模块:

/// <summary>
/// Ninject module to handle dependency injection of repositories
/// </summary>
public class RepositoryNinjectModule : NinjectModule
{
    public override void Load()
    {
        Bind<IRepository<Category>>().To<AzureTableRepository<Category>>();
    }
}

模块的加载在NinjectWebCommon.cs

中完成
/// <summary>
    /// Creates the kernel that will manage your application.
    /// </summary>
    /// <returns>The created kernel.</returns>
    private static IKernel CreateKernel()
    {
        var kernel = new StandardKernel();
        kernel.Bind<Func<IKernel>>().ToMethod(ctx => () => new Bootstrapper().Kernel);
        kernel.Bind<IHttpModule>().To<HttpApplicationInitializationHttpModule>();

        RegisterServices(kernel);
        return kernel;
    }

    /// <summary>
    /// Load your modules or register your services here!
    /// </summary>
    /// <param name="kernel">The kernel.</param>
    private static void RegisterServices(IKernel kernel)
    {
        // Load the module that contains the binding
        kernel.Load(new RepositoryNinjectModule());

        // Set resolver needed to use Ninject with MVC4 Web API
        GlobalConfiguration.Configuration.DependencyResolver = new NinjectResolver(kernel);
    } 

DependencyResolver已创建,因为Ninject的DependencyResolver实现了System.Web.Mvc.IDependencyResolver,并且无法将其分配给WebApi应用程序的GlobalConfiguration.Configuration

所有这些,Ninject部分实际上是在Controller中注入了正确的类型,但是Ninject无法在AzureTableRepository的构造函数中注入tableName参数。

在这种情况下,我怎么能这样做?我已经查阅了很多文章和ninject文档,看看我如何使用参数,但我似乎无法让它工作。

任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:10)

我使用{... 1}}方法,如...

WithConstructorArgument()

存储库设计的其余部分可能是另一个问题。恕我直言创建一张桌子或做任何繁重的工作似乎是一个很大的禁忌。

答案 1 :(得分:0)

与此同时,我一直在与提供商一起努力尝试并且它似乎有效。

我不知道这是不是一个好主意,或者它是否有点矫枉过正,但这就是我所做的: 我创建了一个通用的提供程序类:

public abstract class NinjectProvider<T> : IProvider
{
    public virtual Type Type { get; set; }
    protected abstract T CreateInstance(IContext context);

    public object Create(IContext context)
    {
        throw new NotImplementedException();
    }

    object IProvider.Create(IContext context)
    {
        throw new NotImplementedException();
    }

    Type IProvider.Type
    {
        get { throw new NotImplementedException(); }
    }
}

然后我在AzureTableRepositoryProvider中实现了那个。 (T支持为多个实体类型提供相同的存储库。)

public class AzureTableRepositoryProvider<T> : Provider<AzureTableRepository<T>> where T : TableServiceEntity
{
    protected override AzureTableRepository<T> CreateInstance(IContext context)
    {
        string tableName = "";

        if (typeof(T).Name == typeof(Category).Name)
        {
            // TODO Get the table names from a resource
            tableName = "categories";
        }
        // Here other types will be addedd as needed

        AzureTableRepository<T> azureTableRepository = new AzureTableRepository<T>(tableName);

        return azureTableRepository;
    }
}

通过使用此提供程序,我可以传入正确的表名以供使用的存储库。但对我来说,还有两个问题:

  1. 这是一种很好的做法,还是我们可以做得更简单?
  2. 在NinjectProvider类中,我有两个notImplementedException案例。我怎么解决这些?我使用了以下链接中的示例代码,但这不起作用,因为提供程序是抽象的,代码没有创建方法的主体... enter link description here