哪个是工作单元,哪个是存储库?
我有两个界面,但我对命名约定感到困惑:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.