问题是在运行
之后 reportData = dbContext.FinancialsBySupplierAuditPeriodStatusType
.Where(v => v.ReviewPeriodID == reportFilter.ReviewPeriodID && v.StatusCategoryID == reportFilter.StatusCategoryID)
.GroupBy(s => new { s.SupplierID })
.Select(g => new DrilldownReportItem {
SupplierID = g.Key.SupplierID,
SupplierName = g.Max(v => v.SupplierName),
AccountNo = g.Max(v => v.AccountNo),
TempTotals = g.Select(v => new TempTotals { ClaimType = v.TypeDesc ?? "Old Claims", Amount = v.Amount })
}).OrderBy(r => r.SupplierName).ToList();
Temp totals是一个IEnumerable,它包含一个简单类
的IEnumerablepublic class TempTotals {
public string Type { get; set; }
public decimal? Amount { get; set; }
}
我们的想法是获取这些数据并将其分组到一个字典中,以便我可以获得所有金额的总和,其中键是类型。
最终结果如下:
Dictionary<string, decimal> test = new Dictionary<string, decimal>() {
{"Claim",2 },
{"Query", 500 },
{"Normal", 700 }
};
我知道我可以预先知道它,但我正在寻找使用LINQ的解决方案。
答案 0 :(得分:7)
试试这个:
Dictionary<string, decimal?> test =
reportData
.SelectMany(rd => rd.TempTotals)
.GroupBy(tt => tt.ClaimType, tt => tt.Amount)
.ToDictionary(g => g.Key, g => g.Sum());
由于Amount
的类型为decimal?
,因此字典值也为decimal?
。
答案 1 :(得分:1)
试试这个:
IEnumerable<IEnumerable<TempTotals>> yourCollection;
var dictionary = yourCollection.SelectMany(s => s).ToDictionary(k => k.Type, v => v.Amount);
dictionary
的位置Dictionary<string, decimal>
。但是你需要确保你没有两个TempTotals
具有相同的Type
。