哪个是工作单元,哪个是存储库?

发布于 2024-12-11 18:57:41 字数 399 浏览 2 评论 0原文

我有两个界面,但我对命名约定感到困惑:

interface InterfaceA {
    IDbSet<Patient> Patients { get; }
    // others like above
}

interface InterfaceB : InterfaceA {
    int Commit();
}

class DbContext : InterfaceB {
    public IDbSet<Patient> Patients { get; set; }

    int Commit() {
        return this.SaveChanges();
    }
}

我不想让团队中的其他编码人员感到困惑。哪个接口是工作单元,哪个是存储库?

I have two interfaces and I'm confused about the naming conventions:

interface InterfaceA {
    IDbSet<Patient> Patients { get; }
    // others like above
}

interface InterfaceB : InterfaceA {
    int Commit();
}

class DbContext : InterfaceB {
    public IDbSet<Patient> Patients { get; set; }

    int Commit() {
        return this.SaveChanges();
    }
}

I don't want to confuse the other coders on my team. Which interface is the unit of work and which one is the repository?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朕就是辣么酷 2024-12-18 18:57:41

InterfaceA 是存储库。

原因:

repository负责持久化数据,InterfaceB没有要持久化数据的概念。

InterfaceA is the repository.

Reason:

A repository is responsible for persisting data, and InterfaceB has no concept of data to be persisted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文