C# net core程序调试错误集(持续更新)

2021-05-30 10:13

阅读:588

标签:get   strong   nec   调用   cti   tor   dsc   context   ibm   

目录

  • C#程序调试错误集
  • 1.依赖注入错误An unhandled exception has occurred while executing the request.
    • 1.1 出错现象
      • 1.1.1原因是net core在调用ValueController的时候,发现UnitOfWork没有进行依赖注入。
    • 1.2 出错现象
      • 1.2.1 原因是net core在调用UnitOfWork的时候,发现IPBoxContext没有进行依赖注入。
    • 1.3 解决方法

C#程序调试错误集


1.依赖注入错误An unhandled exception has occurred while executing the request.

1.1 出错现象

System.InvalidOperationException: Unable to resolve service for type ‘IBMS.Infrastruct.UoW.UnitOfWork‘ while attempting to activate ‘IBMS.WEBAPI.Controllers.ValueController‘.
出错图片如下:
技术图片

1.1.1原因是net core在调用ValueController的时候,发现UnitOfWork没有进行依赖注入。

1.2 出错现象

System.InvalidOperationException: Unable to resolve service for type ‘IBMS.Infrastruct.Context.IPBoxContext‘ while attempting to activate ‘IBMS.Infrastruct.UoW.UnitOfWork‘.
出错图片如下:
技术图片

1.2.1 原因是net core在调用UnitOfWork的时候,发现IPBoxContext没有进行依赖注入。

1.3 解决方法

在startup.cs中的ConfigureServices方法中进行依赖注入

      services.AddDbContext(options =>
      options.UseMySql(Configuration.GetConnectionString("MySqlConnection")));
      services.AddScoped();
      services.AddScoped(typeof(UnitOfWork));//注入工作单元
      services.AddScoped(typeof(IPBoxContext));

注意:IPBoxContext进行AddDbContext注入数据上下文之后,仍需要注入services.AddScoped(typeof(IPBoxContext))。


C# net core程序调试错误集(持续更新)

标签:get   strong   nec   调用   cti   tor   dsc   context   ibm   

原文地址:https://www.cnblogs.com/JerryMouseLi/p/11052009.html


评论


亲,登录后才可以留言!