How to inject dependencies using Ninject In ASP.NET WebForm?

痞子三分冷 提交于 2019-12-01 07:13:56

问题


I have a fair idea of using the Repository Pattern and have been attempting to "upgrade" our current way of creating ASP .Net websites. So i do the following

  1. Create a solution with a class project called DataAccessLayer and another class project called BusinessLogicLayer. Finally a 3rd project which is my ASP .Net website (a normal site).
  2. I add a dbml file to the DAL and drag a table, then in my BLL i add an interface and a class which implements this interface:

My interface

namespace BLL.Interfaces
{
    interface IUser
    {
        List<User> GetAllUsers();
    }
}

In my class

namespace BLL.Services
{
   public class UserService : BLL.Interfaces.IUser
    {
        public List<User> GetUsers()
        {
            throw new NotImplementedException();
        }
    }
}

I know the code is not fully completed, but there for illustrative purposes.

So i right click the BLL project > Manage NuGet Packages > Searched for Ninject and found a few. I was overwhelmed with the number of entries returned after after further research i am lost in how to add Ninject to a normal ASP .Net website? Specifically which addin i require? As there are many MVC and reading further i think im a little confused.

I was trying to add it to the BLL project as thats where i THINK it should go so i can register my services in there.

Could anyone guide me in what i need to so in order to use Ninject entries but im not using MVC?


回答1:


Install Ninject.Web either from "Package Manager Console" or NuGet.

Version is 3.2.1 as of this writing.

OR

It will install the following 4 packages -

Sample Service Class

public interface IUserService
{
    List<string> GetUsers();
}

public class UserService : IUserService
{
    public List<string> GetUsers()
    {
        return new List<string> {"john", "eric"};
    }
}

Then add binding to ~/App_Start/NinjectWebCommon.cs.

In code behind page, property inject using [Inject] attribute.




回答2:


In Addition in answer by win I would advise people not to get confused by using Constructor based injection in ASP.NET Webforms as Web Forms doesn't support constructor based injection simply. In default configuration they only support Property based Injections as already demonstrated by Win.



来源:https://stackoverflow.com/questions/25046162/how-to-inject-dependencies-using-ninject-in-asp-net-webform

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!