EF如何限制用户不访问DbContext并添加聚合根的子级?
我使用存储库模式和工作单元。它与我的域模型一起保存在一个单独的项目中。我意识到用户可能很想直接转到 DbContext 并添加聚合根的子级。
我应该标记除存储库和 UnitOfWork 之外的所有内部内容吗?提出这个问题的原因是,我还没有在任何文档、示例甚至我到目前为止所读到的主题中看到这样做。
I use the repository pattern and UnitOfWork. This is kept in a separate project together with my domain model. I realize it might be tempting for users to go to the DbContext directly and add i.e. a child of a aggregate root.
Should I mark everything internal except for repositories and UnitOfWork? The reason for asking is that I've not seen this done in any of the documentation, examples or even the subject addressed in what I've read so far.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要将
DbContext
暴露给域层和 UI 层。您的存储库模式实现是一个有漏洞的抽象。域层
数据访问层
Do not expose the
DbContext
to your domain layer and UI layer. Your repository pattern implementation is a leaky abstraction.Domain Layer
Data Access layer