首页 > 解决方案 > LINQ 转换/透视

问题描述

我正在做一个项目,我使用实体框架将信息保存在简单的 POCO 类中,对其进行操作,然后输出到 OpenXML 报告。

我有以下示例类:

public class ClassA
{
   property string SectionName {get;set;}
   property string Status {get;set;}
   property int SingleValue {get;set;}
   property int CoupleValue {get;set;}
   property int FamilyValue {get;set;}
}

例如,这可以填充:

SectionName = 'Category 1'
Status = 'Opening'
SingleValue = 0
CoupleValue = 0
FamilyValue = 0

SectionName = 'Category 1'
Status = 'Current'
SingleValue = 1
CoupleValue = 1
FamilyValue = 1

SectionName = 'Category 1'
Status = 'Closing'
SingleValue = 2
CoupleValue = 2
FamilyValue = 2

SectionName = 'Category 2'
Status = 'Opening'
SingleValue = 0
CoupleValue = 0
FamilyValue = 0

SectionName = 'Category 2'
Status = 'Current'
SingleValue = 1
CoupleValue = 1
FamilyValue = 1

SectionName = 'Category 2'
Status = 'Closing'
SingleValue = 2
CoupleValue = 2
FamilyValue = 2

在我的代码中,我有一个 ICollection :

ICollection<ClassA> Classes;

有没有办法将这个集合转换/旋转到这个准备好使用 LINQ 输出:

SectionName | ValueLabel | OpeningValue | CurrentValue | ClosingValue
Category 1  | Single     | 0            | 1            | 2
Category 1  | Couple     | 0            | 1            | 2
Category 1  | Family     | 0            | 1            | 2
Category 2  | Single     | 0            | 1            | 2
Category 2  | Couple     | 0            | 1            | 2
Category 2  | Family     | 0            | 1            | 2

标签: entity-frameworklinqpoco

解决方案


你可以想出这样的东西:

var l = new List<Test>
{
    new Test { SectionName = "Cat 1", Status = "Opening", SingleValue = 0, CoupleValue = 0, FamilyValue = 0 },
    new Test { SectionName = "Cat 1", Status = "Current", SingleValue = 1, CoupleValue = 1, FamilyValue = 1 },
    new Test { SectionName = "Cat 1", Status = "Closing", SingleValue = 2, CoupleValue = 2, FamilyValue = 2 },
    new Test { SectionName = "Cat 2", Status = "Opening", SingleValue = 0, CoupleValue = 0, FamilyValue = 0 },
    new Test { SectionName = "Cat 2", Status = "Current", SingleValue = 1, CoupleValue = 1, FamilyValue = 1 },
    new Test { SectionName = "Cat 2", Status = "Closing", SingleValue = 2, CoupleValue = 2, FamilyValue = 2 },
};

const string strValue = "Value";
var cats = l.Select(x => x.SectionName).Distinct().ToArray();
var catNo = cats.Length;
var valProps = new Test().GetType().GetProperties().Where(p => p.Name.EndsWith(strValue)).ToArray();
var vals = valProps.Select(p => p.Name.Split(strValue).First()).ToArray();
var valsNo = vals.Length;
var elNo = catNo * valsNo;
var dictOpClCu = l.GroupBy(t => t.Status).ToDictionary(g => g.Key, g => g
    .SelectMany(t => valProps.Select(p => (int) p.GetValue(t, null))).ToArray());

var l2 = new List<Test2>();
var currCat = -1;
var currVal = -1;
for (var i = 0; i < elNo; i++)
{
    l2.Add(new Test2
    {
        Section = cats[i % (elNo / catNo) != 0 ? currCat : ++currCat],
        ValueLabel = vals[++currVal % valsNo],
        OpeningValue = dictOpClCu["Opening"][i],
        ClosingValue = dictOpClCu["Closing"][i],
        CurrentValue = dictOpClCu["Current"][i]
    });
}

测试类:

public class Test
{
    public string SectionName { get; set; }
    public string Status { get; set; }
    public int SingleValue { get; set; }
    public int CoupleValue { get; set; }
    public int FamilyValue { get; set; }
}

public class Test2
{
    public string Section { get; set; }
    public string ValueLabel { get; set; }
    public int OpeningValue { get; set; }
    public int CurrentValue { get; set; }
    public int ClosingValue { get; set; }

    public override string ToString() => $"{Section} | {ValueLabel} | {OpeningValue} | {CurrentValue} | {ClosingValue}";
}

推荐阅读