我使用内置的 Funq IoC 容器设置了一个 ServiceStack api 来解析我的存储库。但是,当我调用 api 方法时,出现以下异常:
无法解析 System.Boolean 类型的必需依赖项。
上次我检查 System.Boolean 不需要任何解析。我已经在 AppHost 配置中注册了我的存储库,如下所示:
container.RegisterAutoWiredAs<OrganisationRepository, IOrganisationRepository>().ReusedWithin(ReuseScope.Request);
这是我第一次使用 ServiceStack 或 Funq。我做错什么了吗?有没有解决的办法?