7

我有以下继承层次结构:

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>
{
}

而这段代码:

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

using (IAddressRepository adrr = new AddressRepository())
    foreach (var a in adrs)
        adrr.Add(a);

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

Error   43  
'Interfaces.IAddressRepository': type used in a using statement must be
 implicitly convertible to 'System.IDisposable'

但是,父级IAddressRepository继承自IDisposable.

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

4

2 回答 2

7

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

尝试进行清理,然后重新构建所有,并检查您的参考路径。如果项目在同一个解决方案中,请确保您引用的是包含IRepository<T>/IAddressRepository而不是 DLL 的项目。

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

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

于 2012-05-22T15:25:37.987 回答
2

为我工作:

using System;

public class Address {}

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

public interface IAddressRepository : IRepository<Address>
{
}

class Program
{
    public static void Main()
    {
        using (var repo = GetRepository())
        {
        }
    }

    private static IAddressRepository GetRepository()
    {
        // TODO: Implement :)
        return null;
    }
}

我怀疑你可能有两个IAddressRepository接口。你确定是Interfaces.IAddressRepository那个延伸IRepository<T>,那个延伸IDisposable

于 2012-05-22T15:29:34.090 回答