首页 > 代码库 > NInject在函数中使用
NInject在函数中使用
问题,今天我在使用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在函数中使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。