我正在使用的课程:
Group
类:
public class Group
{
public string GroupCode { get; set; }
public List<GroupAttribute> Attributes { get; set; }
}
GroupAttribute
类:
public class GroupAttribute
{
public string attributeName { get; set; }
public string attributeType { get; set; }
}
Element
类
public class Element
{
public string ElementCode { get; set; }
public string GroupCode { get; set; }
public List<RecordAttribute> Attributes { get; set; }
}
ElementAttribute
类:
public class ElementAttribute
{
public string attributeName { get; set; }
public string attributeValue { get; set; }
}
我想要实现的是,对于单个 Group ,对于列表中的每个 Element ,返回attributeValue
或{{1 }}根据天气情况,我可以在""
中找到ElementAttribute.attributeName
。
结果必须保存在每个元素的GroupAttribute.attributeName
中,因此请获取 Elements 列表的属性值和string[]
。
欢迎所有评论,这都是关于学习的。