我有一个审计日志接口:
public interface IAuditDbContext<T1, T2>
{
T1 AuditLog { get; set; }
T2 ChangeTracker { get; }
}
现在在主 AppDbContext 界面中,我将其继承为:
public interface IAppDBContext<T1, T2> : IAuditDbContext<T1,T2>
{
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
}
在主 AppDbContext 类中,我继承为:
public class AppDBContext : DbContext, IAppDBContext<DbSet<Audit>, ChangeTracker>
{
....
}
问题是,在依赖注入时,我试图像这样注入它:
services.AddScoped(
typeof(IAppDBContext<,>),
typeof(IAuditDbContext<,>).MakeGenericType(typeof(AppDBContext)));
我也尝试了其他方法,但无法获得成功 - 我收到的一些错误消息是:
错误信息:
- Message=提供的泛型参数的数量不等于泛型类型定义的数量。
- 无法实例化实现类型“Common.Application.Interfaces。IAuditDbContext
2[T1,T2]' for service type 'Common.Application.Interfaces.IAppDBContext
2[T1,T2]'
请求帮助以正确实施它。