LINQ帮助:我可以“转动”数据吗?

时间:2010-11-03 15:53:23

标签: c# linq pivot

  

可能重复:
  Is it possible to Pivot data using LINQ?

我有这样的事情:

Name    WeekNo  Count
Andreas 1       1
Mary    1       1
Frank   1       1
Vince   1       1
Andreas 2       3
Rick    2       1
Mary    2       2
Mary    3       7
(and so on...)

假设我们对WeekNo和Count列假定的可能值没有任何线索,是否可以在LINQ查询中获取此值?

Name    1       2       3 <-- values of WeekNo column
Andreas 1       3       0
Mary    1       2       7
Rick    0       1       0

0 个答案:

没有答案