我正在一个项目中,我正在使用实体框架将信息保存在简单的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
答案 0 :(得分:0)
您可以提出类似这样的内容:
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]
});
}
Terst类:
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}";
}
答案 1 :(得分:0)
您可以通过在SectionName
上进行分组并将组转换为Status
上的字典来使用LINQ:
var ans = Classes.GroupBy(c => c.SectionName)
.Select(cg => new { Key = cg.Key, Values = cg.ToDictionary(c => c.Status) })
.SelectMany(cg => new[] {
new Output { SectionName = cg.Key, ValueLabel = "Single", OpeningValue = cg.Values["Opening"].SingleValue, CurrentValue = cg.Values["Closing"].SingleValue, ClosingValue = cg.Values["Current"].SingleValue },
new Output { SectionName = cg.Key, ValueLabel = "Couple", OpeningValue = cg.Values["Opening"].CoupleValue, CurrentValue = cg.Values["Closing"].CoupleValue, ClosingValue = cg.Values["Current"].CoupleValue },
new Output { SectionName = cg.Key, ValueLabel = "Family", OpeningValue = cg.Values["Opening"].FamilyValue, CurrentValue = cg.Values["Closing"].FamilyValue, ClosingValue = cg.Values["Current"].FamilyValue }
}).ToList();