..
我需要使用 Linq 将数据表转换为 xml 的帮助。正如您在我的代码中看到的那样,我可以使用硬编码的列名来做到这一点..但我需要它而不需要硬编码...希望有人能指出我该怎么做..非常感谢
示例数据表..
我的 linq 查询..
Dim xmlDoc As New XDocument(
From row In dt.AsEnumerable()
From row In dt.AsEnumerable()
Select New XElement("PUPIL",
New XAttribute("FIRSTNAME", row.Field(Of String)("First Name")),
New XAttribute("LASTNAME", row.Field(Of String)("Last Name")),
New XAttribute("DOB", row.Field(Of String)("Date of Birth")),
New XAttribute("Gender", row.Field(Of String)("Gender")),
New XAttribute("City", row.Field(Of String)("City"))
))