LINQ 中的子查询位于 select 语句中,而不是 where 子句中
我需要执行如下操作,
SELECT p.name,
(SELECT COUNT(p.id) FROM products WHERE products.parent_id = p.id) AS sub_products
FROM products AS p
我在 where 子句中看到很多子查询的 LINQ 示例,但在 select 语句中却没有类似的情况。
I need to do something like the following
SELECT p.name,
(SELECT COUNT(p.id) FROM products WHERE products.parent_id = p.id) AS sub_products
FROM products AS p
I see lots of LINQ examples of subqueries in the where clause,but nothing like this where it's in the select statement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个查询应该是等价的:
This query should be equivalent: