1
我有一個接口,我想使用泛型創建一個存儲庫列表。然而,IRepository
旁邊的T
有The type or namespace T could not be found
。我如何創建一個屬於通用存儲庫列表的屬性?在接口中創建IRepository <T>的列表
public interface IDataAccess
{
IUnitOfWork UnitOfWork { get; set; }
IEnumerable<IRepository<T>> Repositories { get; set; }
我做了'IDataAccess其中T:class',編譯器不再拋出錯誤。謝謝。 –