gpt4 book ai didi

C# 面向对象 : Using interface with type parameters in base concrete class

转载 作者:太空宇宙 更新时间:2023-11-03 18:53:08 24 4
gpt4 key购买 nike

我希望标题能描述问题,我在表述我要解决的问题时遇到了问题。

我正在使用 .NET Core 2.1

在过去 5 年使用 Python 之后,我最近开始在一家 C# 商店工作,所以我的强类型 oop 有点生疏了。这是我所拥有的以及我正在尝试做的事情:

我是一个基本的存储库接口(interface),它为数据库实体定义了基本的 CRUD 功能:

public interface IRepository<TEntity, TPrimaryKey> where TEntity : class
{
TEntity FindById(TPrimaryKey id)
void Create(TEntity entity);
void Delete (TEntity entity);
}

我从这个接口(interface)继承来定义我的存储库类实现的接口(interface):

interface IProductRepository : IRepository<Product, int>
{
void SomeProductRepoMethod(int someParam);
}

然后我在具体类中实现所有接口(interface)方法:

public class ProductRepository : IProductRepository
{
public Product FindById(int id)
{
// lookup
}

public void Create(Product product)
{
// save
}

public void SomeProductRepoMethod(int someParam)
{
// do product repository specific stuff
}
....
}

现在,我想做的事情相当简单。我想在 IRepository 上添加 Create 的重载,它采用 TEntityIEnumerable :

public interface IRepository<TEntity, TPrimaryKey> where TEntity : class
...
void Create(IEnumerable<TEntity> entities);
...

但我想一次定义此重载的实现:所以我在想我可以创建一个抽象的基础存储库类来放置上面的实现。我面临的问题是我不确定如何甚至是否可以用我现在拥有的模型干净利落地做到这一点。我试图创建一个实现 IRepository 的基类,但这意味着将类型参数传递给基类和接口(interface):

public abstract class BaseRepository<TEntity, TPrimaryKey> : IRepository<TEntity, TPrimaryKey>
{
public abstract TEntity FindById(TPrimaryKey id);

public abstract void Create(TEntity entity);
public abstract void Delete(TEntity entity);
public void Create(IEnumerable<TEntity> entities)
{
foreach(TEntity entity in entities)
{
Create(entity);
}
}
}

然后在我的具体存储库中:

public class ProductRepository : BaseRepository<Product, int>, IProductRepository
{
public override Product FindById(int id)
{
// lookup
}

public override void Create(Product product)
{
// save
}

public void SomeProductRepoMethod(int someParam)
{
// do product repository specific stuff
}
....
}

这对我来说并不安静,因为我在 IProductRepositoryProductRepository 中传递了相同的类型参数。我感到我很接近但不在那里,我不确定这里的最佳实践方法是什么。如果有人可以提出一种方法,我真的会感谢反馈。对帖子的长度表示歉意,但我觉得我需要清楚地描述我正在尝试做的事情。谢谢!

最佳答案

在接口(interface)和抽象类中具有相同类型的参数并不是什么大问题。使用抽象类解决方案是可以的,除非您的 ProductRepository 需要从其他类继承。

实际上,有了您的抽象类,您的IRepository 接口(interface)就不再需要存在了。只需使用 BaseRepository 处理一切!

这个问题的另一种解决方案是扩展方法。在静态类中,你可以这样写:

public static void Create<TEntity, TPrimaryKey>(this IRepository<TEntity, TPrimaryKey> repo, IEnumerable<TEntity> entities) where TEntity : class {
// do your foreach loop here
}

现在您可以像这样在任何 IRepository 实例上调用此方法:

repository.Create(...);

关于C# 面向对象 : Using interface with type parameters in base concrete class,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52115353/

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