gpt4 book ai didi

c# - 依赖注入(inject)和附加功能

转载 作者:行者123 更新时间:2023-11-30 17:43:11 25 4
gpt4 key购买 nike

这是我的一般问题,所以我会把它归结为一些非常小的问题。让我们有一个通用服务接口(interface)。

第一部分

public interface IGenericService<T>
{
void Create(T add);
void Read();
void Update(T obj);
void Delete(T obj);
}

它的实现:

 public class DogService : IGenericService<Dog>
{
void Create(Dog add){}
void Read(){}
void Update(Dog obj){}
void Delete(Dog obj){}
}

第二个 repo 有一些独特的附加功能,比如 Miau()

 public class CatService: IGenericService<Cat>
{
void Create(Cat add){}
void Read(){}
void Update(Cat obj){}
void Delete(Cat obj){}
void Miau(){}
}

现在,当我使用一些 IOC 时,我会选择:

Bind<IGenericService<Dog>,DogService>
Bind<IGenericService<Cat>,CatService>

现在在 Viewmodel 的某处:

public class CatsViewModel
{
public CatsViewModel(IGenericService<Cat> catService)
{
//how to have Miau functionality here?
}
}

1.我怎样才能在这里使用Miau功能?我应该为 DogService 创建第二个接口(interface),例如 IDogService 并在这里以这种方式使用它吗?那么通用 repo 的目的是什么?

第二部分让我们有这样的 GenericViewModel:

public abstract class GenericViewModel<T>
{
T Collection { get; }
public GenericViewModel(IGenericService<T> service)
{
Collection = service.Read();
}
}

这很好。但是如果我想将它与 CatService 一起使用怎么办

public class CatViewModel : GenericViewModel<Cat>
{
public CatViewModel(IGenericService<T> service) : base(service)
{
// make miau here?
}
}
  1. 我应该创建 ICatService 接口(interface)并使用两个不同的接口(interface)注入(inject)同一服务的实例吗?我知道我可以从 IGenericService 转换它,因为我知道这是什么类型的服务,但这是一种好方法吗?

    这些问题是关于良好习惯的,而不是关于有效的解决方案:)

最佳答案

我想到了几个选项:

非通用接口(interface)

What is the purpose of generic repo then ?

的确,这样做的目的是什么?为每个目的键入一个界面有多难?

public interface IDogService
{
void Create(Dog add);
void Read();
void Update(Dog obj);
void Delete(Dog obj);
}

public interface ICatService
{
void Create(Cat add);
void Read();
void Update(Cat obj);
void Delete(Cat obj);
void Miau();
}

现在每个消费者都可以请求他们需要的依赖项。 ICatService的客户可以消费Miau .

将额外的行为作为额外的依赖项传递

另一种选择是保留通用 IGenericService<T> , 但为 Miau 添加另一项服务功能:

public interface IMiauService
{
void Miau();
}

然后让需要的客户IMiauService通过他们的构造函数请求它:

public class CatsViewModel
{
private readonly IGenericService<Cat> catService;
private readonly IMiauService miauService;

public CatsViewModel(IGenericService<Cat> catService, IMiauService miauService)
{
this.catService = catService;
this.miauService = miauService;
}

// Members can use both services as needed...
}

此解决方案暗示了第三种更好的选择:

遵循依赖倒置原则

根据Dependency Inversion Principle ,客户应该定义他们需要的 API,然后由具体的类来实现该 API。

因此,如果一个类需要读取写入功能,它应该通过声明相应的接口(interface)来宣传该需求:

public interface IReader<T>
{
T Reader();
}

public interface IWriter<T>
{
void Write(T item);
}

public class GenericViewModel<T>
{
private readonly IReader<T> reader;
private readonly IWriter<T> writer;

public GenericViewModel(IReader<T> reader, IWriter<T> writer)
{
this.reader = reader;
this.writer = writer;
}

// Members can use the reader and writer services...
}

类似于 OP 的界面 IGenericService<T>闻起来像是在确定需求之前就已经定义好的东西,而现在您正试图将方钉装入圆孔中。

关于c# - 依赖注入(inject)和附加功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31323339/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com