如何使用LINQ将数组对象转换为另一个?

时间:2012-04-04 21:18:06

标签: c# asp.net-mvc-3 linq

我有一个匿名对象列表,其中包含从LINQ查询派生的C#中的以下字段。

{ 
String category
decimal Jan
decimal Feb
decimal Mar
decimal Apr
decimal May
decimal Jun
decimal Jul
decimal Aug
decimal Sep
decimal Oct
decimal Nov
decimal Dec
}

我怎么能创建一个对象列表,每个类别的值都有一个字段(基本上每个月有12个对象一个对象(jan,feb,march等)。

ExpectedResult {
string Month, 
decimal category1,
decimal category2,
decimal category3,
...
decimal categoryN
}

所以结果将有12个ExpectedResult对象。 不知道有多少类别/是一个问题。 任何快速建议都会有所帮助。

2 个答案:

答案 0 :(得分:2)

您可以尝试使用SelectMany()方法:

anonymousList.SelectMany(x=>new[]{
                                    new {Cat=category, Month="Jan", Val=Jan}, 
                                    new {Cat=category, Month="Feb", Val=Feb}, 
                                    ... , 
                                    new {Cat=category, Month="Dec", Val=Dec}
                                 });

对于每个源匿名对象,此查询将生成一个包含12个新匿名对象的数组,然后这些数组(作为Enumerables)将连接成一个大型集合。

为了避免以后比较字符串,请考虑在一年中使用Enum(不幸的是.NET没有内置的):

public enum Month
{
   January = 1,
   February = 2,
   ...
   December = 12
}

...

anonymousList.SelectMany(x=>new[]{
                                    new {Cat=category, Month=Month.January, Val=Jan}, 
                                    new {Cat=category, Month=Month.February, Val=Feb}, 
                                    ... , 
                                    new {Cat=category, Month=Month.December, Val=Dec}
                                 });

答案 1 :(得分:0)

从KeithS回答开始,您可以按月分组:

var results = from x in KeithsAnswer
              group x by x.Month into g
              select new { Month = g.Key, CategoryValues = g.Select(c => new { c.Month, c.Val }).ToArray()};

您可以直接将其传递给客户端进行处理,或者如果您确实需要上面指定的表单,则可以实现自己的JavaScriptConverter或使用动态/ ExpandoObject将值存储为属性。