I have the following inheritance hierarchy:
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>
{
}
And this code:
var adrs = new Address[]{
new Address{Name="Office"}
};
using (IAddressRepository adrr = new AddressRepository())
foreach (var a in adrs)
adrr.Add(a);
However, this code does not compile. It gives me this error message:
Error 43
'Interfaces.IAddressRepository': type used in a using statement must be
implicitly convertible to 'System.IDisposable'
However, a parent of IAddressRepository inherits from IDisposable.
What is happening here? How do I make the code compile?
AddressRepositoryclass - this should work if it's implementing properly (though a different error should occur if it isn't!). – Grant Thomas May 22 '12 at 15:24