我有一系列产品
public class Product {
public Product() { }
public string ProductCode {get; set;}
public decimal Price {get; set; }
public string Name {get; set;}
}
现在我想根据产品代码对集合进行分组,并返回一个对象,其中包含每个代码的名称,数量或产品以及每种产品的总价格。
public class ResultLine{
public ResultLine() { }
public string ProductName {get; set;}
public string Price {get; set; }
public string Quantity {get; set;}
}
所以我使用GroupBy按ProductCode分组,然后计算总和并计算每个产品代码的记录数。
这是我到目前为止所做的:
List<Product> Lines = LoadProducts();
List<ResultLine> result = Lines
.GroupBy(l => l.ProductCode)
.SelectMany(cl => cl.Select(
csLine => new ResultLine
{
ProductName =csLine.Name,
Quantity = cl.Count().ToString(),
Price = cl.Sum(c => c.Price).ToString(),
})).ToList<ResultLine>();
由于某种原因,总和正确完成但计数始终为1.
Sampe数据:
List<CartLine> Lines = new List<CartLine>();
Lines.Add(new CartLine() { ProductCode = "p1", Price = 6.5M, Name = "Product1" });
Lines.Add(new CartLine() { ProductCode = "p1", Price = 6.5M, Name = "Product1" });
Lines.Add(new CartLine() { ProductCode = "p2", Price = 12M, Name = "Product2" });
样本数据的结果:
Product1: count 1 - Price:13 (2x6.5)
Product2: count 1 - Price:12 (1x12)
产品1应该有count = 2!
我试图在一个简单的控制台应用程序中模拟这个,但我得到了以下结果:
Product1: count 2 - Price:13 (2x6.5)
Product1: count 2 - Price:13 (2x6.5)
Product2: count 1 - Price:12 (1x12)
产品1:应该只列出一次...... 可以在pastebin上找到上述代码:http://pastebin.com/cNHTBSie
答案 0 :(得分:229)
我不明白第一个“带样本数据的结果”来自何处,但控制台应用中的问题是您使用SelectMany
来查看每个组中的每个项目
我想你只是想:
List<ResultLine> result = Lines
.GroupBy(l => l.ProductCode)
.Select(cl => new ResultLine
{
ProductName = cl.First().Name,
Quantity = cl.Count().ToString(),
Price = cl.Sum(c => c.Price).ToString(),
}).ToList();
在此处使用First()
获取产品名称假设具有相同产品代码的每个产品都具有相同的产品名称。如评论中所述,您可以按产品名称和产品代码进行分组,如果任何给定代码的名称始终相同,则会产生相同的结果,但显然会在EF中生成更好的SQL。
我还建议您分别将Quantity
和Price
属性更改为int
和decimal
类型 - 为什么要使用字符串属性来处理数据显然不是文字?
答案 1 :(得分:19)
以下查询有效。它使用每个组进行选择而不是SelectMany
。 SelectMany
适用于每个集合中的每个元素。例如,在您的查询中,您有2个集合的结果。 SelectMany
获取所有结果,共3个,而不是每个集合。以下代码适用于选择部分中的每个IGrouping
,以使您的聚合操作正常工作。
var results = from line in Lines
group line by line.ProductCode into g
select new ResultLine {
ProductName = g.First().Name,
Price = g.Sum(_ => _.Price).ToString(),
Quantity = g.Count().ToString(),
};
答案 2 :(得分:0)
有时您需要通过FirstOrDefault()
或singleOrDefault()
选择一些字段,您可以使用以下查询:
List<ResultLine> result = Lines
.GroupBy(l => l.ProductCode)
.Select(cl => new Models.ResultLine
{
ProductName = cl.select(x=>x.Name).FirstOrDefault(),
Quantity = cl.Count().ToString(),
Price = cl.Sum(c => c.Price).ToString(),
}).ToList();