【发布时间】:2021-05-05 18:33:56
【问题描述】:
当我在 Visual Studio 2019 中运行我的项目时很好,但是当我在 IIS 上发布我的项目时发生错误。
An unhandled exception occurred while processing the request.
NullReferenceException: Object reference not set to an instance of an object.
我正在使用 mediatr 5 层清洁; 我在启动时注册了 MediatR,但错误没有解决。
services.AddMediatR(typeof(YarnSystemCommandDTO).GetTypeInfo().Assembly);
services.AddScoped(typeof(IGenericRepository<>), typeof(GenericRepository<>));
【问题讨论】:
标签: c# iis asp.net-core-webapi publish mediatr