使用IDisposable进行接口继承?

Oli*_*ver 7 c# inheritance

我有以下继承层次结构:

public interface IRepository<T> : IDisposable
{
    void Add(T model);
    void Update(T model);

    int GetCount();

    T GetById(int id);
    ICollection<T> GetAll();
}

public interface IAddressRepository : IRepository<Address>
{
}
Run Code Online (Sandbox Code Playgroud)

这段代码:

var adrs = new Address[]{
    new Address{Name="Office"}
};

using (IAddressRepository adrr = new AddressRepository())
    foreach (var a in adrs)
        adrr.Add(a);
Run Code Online (Sandbox Code Playgroud)

但是,此代码无法编译.它给了我这个错误信息:

Error   43  
'Interfaces.IAddressRepository': type used in a using statement must be
 implicitly convertible to 'System.IDisposable'
Run Code Online (Sandbox Code Playgroud)

但是,IAddressRepository继承的父母IDisposable.

这里发生了什么?如何编译代码?

Chr*_*ain 7

我的猜测是你犯了一个错误 - 你没有重新编译包含IRepository<T>接口的程序集,因为你继承了它IDisposable,或者你引用了它的错误副本,或者你引用了其他一些IAddressRepository.

尝试执行Clean,然后执行Rebuild All,并检查引用的路径.如果项目在同一解决方案中,请确保引用包含IRepository<T>/ IAddressRepository而不是DLL 的项目.

还要确保AddressRepository 实际实现 IAddressRepository.它可能只是报告错误的错误.

编辑:所以解决方案似乎是包含AddressRepository父类的程序集没有编译.这导致调试器抱怨AddressRepository没有实现IDisposable,而不是(更明智的)"由于其保护级别而无法访问"错误编译类本身.我的猜测是你也有这个错误,但是先解决这个问题.