我正在使用Azure functions
容器开发Autofac
。我已经在项目中实现了通用存储库模式以与后端交互。
我不确定我做错了什么,可能是在注册通用类型时出现问题。
如果我从项目中删除了通用存储库部分,则可以正常工作。
我已经访问了堆栈溢出时的所有链接,但是没有找到合适的解决方案。
运行该功能时,我遇到以下错误。
已执行“排序”(失败,Id = 2cebaac1-a63e-4cf8-b82f-68e2ebeeb32d) [4/25/2019 12:28:18 PM] System.Private.CoreLib:发生异常 执行功能:排序。 Microsoft.Azure.WebJobs.Host:异常 绑定参数“ _chargeOptionsServcie”。 Autofac:发生错误 在激活特定注册期间。见内在 详情除外。注册:Activator = ChargeOptionsService (ReflectionActivator),服务= [Awemedia.Chargestation.Business.Interfaces.IChargeOptionsServcie], 生存时间= Autofac.Core.Lifetime.CurrentScopeLifetime,共享=无, 所有权= OwnedByLifetimeScope --->找不到任何构造函数 与'Autofac.Core.Activators.Reflection.DefaultConstructorFinder' 键入“ Awemedia.Chargestation.Business.Services.ChargeOptionsService” 可以使用可用的服务和参数来调用:
这是我的功能代码:
[DependencyInjectionConfig(typeof(DIConfig))]
public class Function1
{
[FunctionName("Function1")]
public HttpResponseMessage Get(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", Route = null)] HttpRequestMessage req, [Inject]IChargeOptionsServcie _chargeOptionsServcie, [Inject]IErrorHandler _errorHandler)
{
return req.CreateResponse(HttpStatusCode.OK, _chargeOptionsServcie.GetAll());
}
}
这是我的服务代码:
public class ChargeOptionsService : IChargeOptionsServcie
{
private readonly IBaseService<ChargeOptions> _baseService;
private readonly IMapper _mapper;
public ChargeOptionsService(IBaseService<ChargeOptions> baseService, IMapper mapper)
{
_baseService = baseService;
_mapper = mapper;
}
public IEnumerable<ChargeOptionsResponse> GetAll()
{
return _baseService.GetAll().Select(t => _mapper.Map<ChargeOptions, ChargeOptionsResponse>(t));
}
}
这是我的DIConfig.cs
代码,我在其中注册我的依赖项:
public class DIConfig
{
public DIConfig(string functionName)
{
DependencyInjection.Initialize(builder =>
{
builder.RegisterGeneric(typeof(BaseRepository<>)).As(typeof(IBaseRepository<>));
builder.RegisterGeneric(typeof(BaseService<>)).As(typeof(IBaseService<>));
builder.RegisterType<ErrorHandler>().As<IErrorHandler>();
builder.RegisterType<ChargeOptionsService>().As<IChargeOptionsServcie>();
builder.RegisterType<EventsService>().As<IEventsService>();
}, functionName);
}
}
我的基本服务类:
public class BaseService<T> : IBaseService<T>
{
private readonly IBaseRepository<T> _repository;
public BaseService(IBaseRepository<T> repository)
{
_repository = repository;
}
public IEnumerable<T> GetAll()
{
return _repository.GetAll();
}
public T GetById(int id)
{
return _repository.GetById(id);
}
public IEnumerable<T> Where(Expression<Func<T, bool>> exp)
{
return _repository.Where(exp);
}
public T AddOrUpdate(T entry, int Id)
{
var targetRecord = _repository.GetById(Id);
var exists = targetRecord != null;
if (exists)
{
_repository.Update(entry);
}
_repository.Insert(entry);
return entry;
}
public T AddOrUpdate(T entry, Guid guid)
{
var targetRecord = _repository.GetById(guid);
var exists = targetRecord != null;
if (exists)
{
_repository.Update(entry);
}
_repository.Insert(entry);
return entry;
}
public void Remove(int id)
{
var label = _repository.GetById(id);
_repository.Delete(label);
}
public bool InsertBulk(IEnumerable<T> entities)
{
return _repository.InsertBulk(entities);
}
public T GetById(Guid guid)
{
return _repository.GetById(guid);
}
}
这是我的基本存储库:
public class BaseRepository<T> : IBaseRepository<T> where T : class
{
private readonly Context _context;
private readonly DbSet<T> _entities;
private readonly IErrorHandler _errorHandler;
public BaseRepository(AwemediaContext context, IErrorHandler errorHandler)
{
_context = context;
_entities = context.Set<T>();
_errorHandler = errorHandler;
}
public IEnumerable<T> GetAll()
{
return _entities.ToList();
}
public T GetById(int id)
{
return _entities.Find(id);
}
public IEnumerable<T> Where(Expression<Func<T, bool>> exp)
{
return _entities.Where(exp);
}
public T Insert(T entity)
{
if (entity == null) throw new ArgumentNullException(string.Format(_errorHandler.GetMessage(ErrorMessagesEnum.EntityNull), "", "Input data is null"));
_entities.AddAsync(entity);
_context.SaveChanges();
return entity;
}
public void Update(T entity)
{
if (entity == null) throw new ArgumentNullException(string.Format(_errorHandler.GetMessage(ErrorMessagesEnum.EntityNull), "", "Input data is null"));
var oldEntity = _context.Find<T>(entity);
_context.Entry(oldEntity).CurrentValues.SetValues(entity);
_context.SaveChanges();
}
public void Delete(T entity)
{
if (entity == null) throw new ArgumentNullException(string.Format(_errorHandler.GetMessage(ErrorMessagesEnum.EntityNull), "", "Input data is null"));
_entities.Remove(entity);
_context.SaveChanges();
}
public bool InsertBulk(IEnumerable<T> entities)
{
bool result = false;
if (entities.Count() > 0)
{
_entities.AddRange(entities);
_context.SaveChanges();
result = true;
}
return result;
}
public T GetById(Guid guid)
{
return _entities.Find(guid);
}
}
请帮助我。最近三天我都伤了头。
答案 0 :(得分:3)
在
Autofac.Core.Activators.Reflection.DefaultConstructorFinder
类型的Awemedia.Chargestation.Business.Services.ChargeOptionsService
中发现的所有构造函数都不能使用可用的服务和参数来调用:
此错误消息表示 Autofac 无法创建ChargeOptionsService
,因为尚未注册所需的依赖项之一。如果查看您的ChargeOptionsService
构造函数,可以看到有2个依赖项:
public ChargeOptionsService(IBaseService<ChargeOptions> baseService, IMapper mapper)
{
_baseService = baseService;
_mapper = mapper;
}
IBaseService<ChargeOptions> baseService
。此依赖项通过以下行
builder.RegisterGeneric(typeof(BaseService<>)).As(typeof(IBaseService<>));
IMapper mapper
。此依赖项未注册。 要纠正错误,您应该注册一个IMapper
。
builder.RegisterType<Mapper>().As<IMapper>();
无法解析参数
AwemediaContext
此错误消息几乎相同,这意味着您的一个依赖项需要AwemediaContext
未注册。
答案 1 :(得分:0)
您尝试过这种方法吗?
// Register types that expose interfaces...
builder.RegisterType<BaseService<ChargeOptions>>.As(typeof(IBaseService<ChargeOptions>));
否则,请更改您的ChargeOptionsService代码。给它一个默认的构造函数。看看是否可行,一一重新添加constrcutor参数,然后查看错误之处。