我收到错误
Autofac.dll中出现“Autofac.Core.DependencyResolutionException”类型的异常,但未在用户代码中处理 附加信息:在类型'UsaEpayService'上调用构造函数'Void .ctor()'时抛出异常。
无效的URI:URI为空。 在Resolve上获得以上异常 - 路径:Libraries \ Nop.Core \ Infrastructure \ DependencyManagement \ ContainerManager.cs
这是我的代码:
public virtual object Resolve(Type type, ILifetimeScope scope = null)
{
if (scope == null)
{
//no scope specified
scope = Scope();
}
return scope.Resolve(type);
}