码迷,mamicode.com
首页 > 其他好文 > 详细

NInject在函数中使用

时间:2017-05-05 18:31:02      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:dal   后台   hand   class   www   handle   写法   引用   and   

问题,今天我在使用Ajax的时候,发现请求到后台没法得到对象。

原来的写法是这样的:

public class Baoming : IHttpHandler
    {
        [Inject]
        public IBLL.IChildrensInfo ChildrensInfoBLL { get; set; }
public void Save()
{
//下面就直接使用 ChildrenInfoBLL,报错未将引用设置到对象的实例
}
}

 

后来查到了一个方法:

public void Save()
{
IKernel kernel = new StandardKernel();
            kernel.Bind<IBLL.IChildrensInfo>().To<BLL.ChildrensInfo>();
            kernel.Bind<IDAL.IChildrensInfo>().To<DAL.ChildrensInfo>();
            IBLL.IChildrensInfo ChildrensInfoBLL = kernel.Get<IBLL.IChildrensInfo>();
//......
}

好了,问题解决。http://www.cnblogs.com/JustYong/p/5882416.html

NInject在函数中使用

标签:dal   后台   hand   class   www   handle   写法   引用   and   

原文地址:http://www.cnblogs.com/xsj1989/p/6814218.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!