방법: 그룹화를 사용하여 계층 구조 만들기
업데이트: November 2007
이 예제에서는 데이터를 그룹화한 다음 그룹화에 따라 XML을 생성하는 방법을 보여 줍니다.
예제
이 예제에서는 먼저 범주를 기준으로 데이터를 그룹화한 다음 XML 계층 구조가 그룹화를 반영하는 XML 파일을 새로 생성합니다.
이 예제에서는 XML 문서로 샘플 XML 파일: 숫자 데이터(LINQ to XML)를 사용합니다.
XElement doc = XElement.Load("Data.xml");
var newData =
new XElement("Root",
from data in doc.Elements("Data")
group data by (string)data.Element("Category") into groupedData
select new XElement("Group",
new XAttribute("ID", groupedData.Key),
from g in groupedData
select new XElement("Data",
g.Element("Quantity"),
g.Element("Price")
)
)
);
Console.WriteLine(newData);
Dim doc As XElement = XElement.Load("Data.xml")
Dim newData As XElement = _
<Root>
<%= _
From data In doc.<Data> _
Group By category = data.<Category>(0).Value _
Into groupedData = Group _
Select <Group ID=<%= category %>>
<%= _
From g In groupedData _
Select _
<Data>
<%= g.<Quantity>(0) %>
<%= g.<Price>(0) %>
</Data> _
%>
</Group> _
%>
</Root>
Console.WriteLine(newData)
이 예제의 결과는 다음과 같습니다.
<Root>
<Group ID="A">
<Data>
<Quantity>3</Quantity>
<Price>24.50</Price>
</Data>
<Data>
<Quantity>5</Quantity>
<Price>4.95</Price>
</Data>
<Data>
<Quantity>3</Quantity>
<Price>66.00</Price>
</Data>
<Data>
<Quantity>15</Quantity>
<Price>29.00</Price>
</Data>
</Group>
<Group ID="B">
<Data>
<Quantity>1</Quantity>
<Price>89.99</Price>
</Data>
<Data>
<Quantity>10</Quantity>
<Price>.99</Price>
</Data>
<Data>
<Quantity>8</Quantity>
<Price>6.99</Price>
</Data>
</Group>
</Root>