为了账号安全,请及时绑定邮箱和手机立即绑定

为什么controller中只能使用接口类型,使用接口的实现类会报错

http://img1.sycdn.imooc.com//5f3400a60001d10c13660768.jpg

private MockIStudent student;

        public HomeController(MockIStudent _student)
        {
            student = _student;
        }

正在回答

1 回答

因为你添加的依赖注入是接口而不是实现类,如果你写成下面这种就可以

services.AddTransient<StudentRepository>();

直接注入实现类

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么controller中只能使用接口类型,使用接口的实现类会报错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信