Linq to SQL 按聚合排序
我在 LINQ to SQL 中遇到一个非常简单的分组和聚合问题,但我无法弄清楚,这让我抓狂。
我将事情简化为这个例子:
class Customer { 公共引导 ID; 公共字符串名称; }
类订单 { 公共指导客户 ID; 公共双倍金额; ?
如何获取按订单数量排序的客户列表 他们购买的总金额是多少?
I have a very simple grouping and aggregation problem in LINQ to SQL that I just can't figure out, and it is driving me mad.
I've simplified things into this example:
class Customer {
public Guid Id;
public String Name;
}
class Order {
public Guid Customer_Id;
public double Amount;
}
How do I get a list of customers ordered by the number of orders they have? And on the total amount they have purchased for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
按订单数量:
按购买总额:
By number of orders:
By total amount purchased: