如何处理sql连接场景

发布于 2025-01-03 09:31:17 字数 114 浏览 0 评论 0原文

我将 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 技术交流群。

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

发布评论

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

评论(1

天气好吗我好吗 2025-01-10 09:31:17

有几种方法可以处理这种情况。在大多数情况下联接不是必需的,并且通常在 EF 中避免。

var orders = orderRepository.GetAll();

var projection = orders.Where(o => o.Customer.Name == "Foo")
        .Select(o => new { o, o.Customer });

通用存储库是一个有漏洞的抽象。为每个实体实现特定的存储库,并创建执行连接并返回结果的方法。

There are couple of ways to handle the situation. Joins are not necessary in most situations and generally avoided in EF.

var orders = orderRepository.GetAll();

var projection = orders.Where(o => o.Customer.Name == "Foo")
        .Select(o => new { o, o.Customer });

Generic Repository is a leaky abstraction. Implement specific repository for each entity and create method that does the join and return the result.

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