我在尝试从GenericRepository继承时收到此错误消息。错误说我还需要提供一个上下文,但我不确定如何?
//IncidentRepository
public class IncidentRepository : GenericRepository<Incident>
//Generic Repository (to inherit from)
public class GenericRepository<TEntity> where TEntity : class
{
internal db_SLee_FYPContext context;
internal DbSet<TEntity> dbSet;
public GenericRepository(db_SLee_FYPContext context)
{
this.context = context;
this.dbSet = context.Set<TEntity>();
}
编辑:
只是为了检查我是否抓住了这个?
public class IncidentRepository: GenericRepository<Incident>
{
public IncidentRepository(db_SLee_FYPContext context)
{
this.context = context;
}
//Then in my genric repository
public GenericRepository()
{
}
答案 0 :(得分:32)
该错误告诉您不要调用适当的基础构造函数。派生类中的构造函数...
public IncidentRepository(db_SLee_FYPContext context)
{
this.context = context;
}
......实际上是这样做的:
public IncidentRepository(db_SLee_FYPContext context)
: base()
{
this.context = context;
}
但是没有无参数的基础构造函数。
你应该通过调用匹配的基础构造函数来解决这个问题:
public IncidentRepository(db_SLee_FYPContext context)
: base(context)
{ }
在C#6中,如果基类型中只有一个构造函数,则会收到此消息,因此它为您提供了最佳提示,即基本构造函数中缺少哪个参数。在C#5中,消息只是
GenericRepository不包含带0参数的构造函数