我有一个带有服务引用的通用抽象基类。当我尝试从具体实现类访问任何属性时,我收到以下错误。 'Repository'不包含'Add'的定义,也没有扩展方法'Add'可以找到接受类型'Repository'的第一个参数(你是否缺少using指令或汇编引用?)
**Base class**
namespace Services
{
public abstract class BaseRepository<T> : IRepository<T>
{
public IService<T> _serviceContext;
public BaseRepository(IService<T> serviceContext)
{
_serviceContext = serviceContext;
}
#region IRepository<T> Members
public List<T> GetAll()
{
return _serviceContext.GetAll();
}
public T GetById(Guid id)
{
throw new NotImplementedException();
}
public void Add(T entity)
{
_serviceContext.Add(entity);
}
public void Remove(T entity)
{
throw new NotImplementedException();
}
#endregion
}
}
**Concrete class**
namespace Services
{
public class SpecialRepository : BaseRepository<SpecialItem>, ISpecialRepository
{
public SpecialRepository() : base(new DataAccess.SpecialList())
{
}
}
}
**Service Class**
namespace DataAccess
{
public class SpecialList : IService<SpecialItem>
{
public List<SpecialItem> GetAll()
{
//Implementation
}
}
}
**Repository Interface**
namespace Domain
{
public interface IRepository<T>
{
List<T> GetAll();
T GetById(Guid id);
void Add(T entity);
void Remove(T entity);
}
}
**Service Interface**
namespace DataAccess
{
public interface IService<T>
{
List<T> GetAll();
void Add(T entity);
}
}
感谢任何帮助。提前谢谢!
答案 0 :(得分:0)
您需要在SpecialList中定义Add方法。
我添加了一个,我没有收到错误调用
SpecialRepository rep = new SpecialRepository();
rep.Add(new SpecialItem());