我在 10gen Mongo C# 驱动程序的 v2 中使用新的 Fluent Aggregation Pipeline,但在尝试按多个字段分组时遇到异常(下面的示例代码)。
抛出的异常是......
命令聚合失败:异常:组聚合字段“月”必须定义为对象内的表达式。
我可以通过为我的组密钥创建一个类型来使其工作,但我更愿意使用匿名类型,因为我需要创建的类型将没有其他用途。
var agg = db.GetCollection<Order>("orders").Aggregate();
var project = agg.Project(o => new {o.Value
, o.Product
, Month = o.Date.Month
, Year = o.Date.Year});
var group = project.Group(
key => new { key.Month, key.Product},
g => new OrderSummary {Month = g.Key.Month
,Product = g.Key.Product
, TotalSales = g.Sum(o => o.Value)});
var result = group.ToListAsync().Result;
以供参考 ...
public class Order : Entity
{
public DateTime Date { get; set; }
public string Product { get; set; }
public double Value { get; set; }
}
public class OrderSummary
{
public string Product { get; set; }
public int Month { get; set; }
public int Year { get; set; }
public double TotalSales { get; set; }
}
fluent API 生成的命令是...
{ "aggregate" : "Order",
"pipeline" : [
{ "$project" : { "Value" : "$Value", "Product" : "$Product", "Month" : { "$month" : "$Date" }, "Year" : { "$year" : "$Date" }, "_id" : 0 } }
, { "$group" : {
"_id" : { "Month" : "$Month", "Product" : "$Product" }
, "Month" : "$Month"
, "Product" : "$Product"
, "TotalSales" : { "$sum" : "$Value" } } }]
, "cursor" : { } }