在与泛型的结

时间:2009-10-16 13:06:41

标签: c# generics

我有以下域对象:

public class DomainObject<T,TRepo> 
  where T : DomainObject<T>
  where TRepo : IRepository<T>
{
      public static TRepo Repository { get;private set; }
}

存储库接口:

public interface IRepository<T> //where T : DomainObject<T> // The catch 22
{
    void Save(T domainObject);
}

2的实现:

public class User : DomainObject<User,MyRepository>
{
    public string Name { get;private set;}
}

public class MyRepository : IRepository<User>
{
    public List<User> UsersWithNameBob()
    {

    }
}

所以添加另一个不在IRepository中的方法。

我希望将存储库强制为IRepository,而上面可以是任何类型。

一个小旁注:我正在为很少有域对象的小型系统编写这个。我不打算创建任何使用IoC的东西,而是简单易用的东西。

由于

2 个答案:

答案 0 :(得分:4)

您对DomainObject的实现仅指定一个泛型类型参数而不是两个。为什么不呢:

public class User : DomainObject<User, MyRepository>
{
    public string Name { get;private set;}
}

如果这不起作用,你能用什么方式解释它不能满足你的需要吗?

答案 1 :(得分:3)

不完全确定你想要什么,但这样的事情会编译:

public class DomainObject<T, TRepo> 
     where T: DomainObject<T, TRepo> 
     where TRepo: IRepository<T, TRepo>
{
     public static TRepo Repository
     {
         get;
         private set; 
     }
}

public interface IRepository<T, TRepo>
     where T: DomainObject<T, TRepo>
     where TRepo: IRepository<T, TRepo>
{
     void Save(T domainObject);
}