如何处理sql连接场景
我将 EF 与 mvc 一起使用,因为我有一个通用存储库,基于 ObjectContext 的 unitOfWork 实现,到目前为止 CRUD 没有问题。我只是想知道我可以/应该如何处理需要与实体进行连接的场景。
I'm using EF along with mvc, for that I've a generic repository, unitOfWork implementation based on ObjectContext, no problem with CRUD so far. I'm just wondering how can/should I handle scenarios where I need to do the join with entities.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几种方法可以处理这种情况。在大多数情况下联接不是必需的,并且通常在 EF 中避免。
通用存储库是一个有漏洞的抽象。为每个实体实现特定的存储库,并创建执行连接并返回结果的方法。
There are couple of ways to handle the situation. Joins are not necessary in most situations and generally avoided in EF.
Generic Repository is a leaky abstraction. Implement specific repository for each entity and create method that does the join and return the result.