我正在尝试在我的应用程序中实现通用存储库模式。我有两个接口,IEntity和IRepository:
IEntity:
public interface IEntity
{
int Id { get; set; }
}
IRepository:
public interface IRepository<T> where T : IEntity
{
void AddOrUpdate(T ent);
void Delete(T ent);
IQueryable<T> GetAll();
}
现在我正在尝试创建一个通用的RepositoryGlobal类,但是我收到了这个错误:
The type 'T' must be a reference type in order to use it as parameter 'T' in the generic type or method
这就是我的代码:
public class RepositoryGlobal<T> : IRepository<T> where T : IEntity
{
public RepositoryGlobal(DbContext _ctx)
{
this._context = _ctx;
}
private DbContext _context;
public void Add(T ent)
{
this._context.Set<T>().Add(ent);
}
public void AddOrUpdate(T ent)
{
if (ent.Id == 0)
{
//not important
}else
{
//for now
}
}
public void Delete(T ent)
{
}
public IQueryable<T> GetAll()
{
return null;
}
}
错误出现在RepositoryGlobal类的Add方法中。 有任何想法吗? 感谢
答案 0 :(得分:3)
您需要添加class
约束
public class RepositoryGlobal<T> : IRepository<T> where T : class, IEntity