gpt4 book ai didi

orm - NHibernate 的 DDD 存储库模式

转载 作者:行者123 更新时间:2023-12-04 15:37:58 24 4
gpt4 key购买 nike

就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the help center寻求指导。




10年前关闭。




我很困惑。这是 Ayende Rahien Repository is the new singleton 的博客条目.

我相信存储库应该只执行 CRUD 操作而不是额外的查询,否则你最终会在你的存储库中使用这些方法。

  • 查找客户(id)
  • FindCustomerWithAddresses(id)
  • FindCustomerWith..

  • 所以我的问题是,在哪里(在哪一层)进行查询以检索实体?

    最佳答案

    可以编写具有默认 CRUD 操作的存储库。例如:

    public interface IRepository<TEntity>
    {
    TEntity FindByIdentity(object identity);
    TEntity FindBy(Expression<Func<TEntity, bool>> specification);
    IList<TEntity> FindAll();
    IList<TEntity> FindAllBy(Expression<Func<TEntity, bool>> specification);
    TEntity Save(TEntity saveable);
    void Delete(TEntity deletable);
    }

    Expression> 基本上是规范,查询可以这样封装。如果我们有那种存储库,那么我们就不需要编写很多特定的存储库。

    替代路径是创建 Query 对象。我们可以将该查询的接口(interface)添加到核心/业务逻辑层,并将实现添加到服务/数据层。这样我们就可以很好地命名查询,例如 AllPreferredCustomersQuery。它与规范非常相似,但规范不使用基础设施,因此我们可以将其添加到核心/业务逻辑层。查询对象更具可配置性(例如,可以添加限制、获取策略、连接等)

    关于orm - NHibernate 的 DDD 存储库模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1666477/

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