我有以下域对象:

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的任何东西,而是要创建易于使用的东西。

谢谢

最佳答案

不确定您想要什么,但是类似以下内容:

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);
}

关于c# - 与泛型打成一片,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1577949/

10-09 04:38