将xelement加载到数据表中

时间:2011-09-29 19:44:10

标签: c# xml linq-to-xml

我有以下xml文件,其中包含大量有关公司分支机构的信息。 (这只是一个例子)..

我真正需要的是,只在数据表中加载Branch1中的数据(与我的xml文件具有相同的结构,所以数据表根本没问题)..

iam使用c#而我想这样做是linq,但我不知道linq ... 我的问题是: 我如何从xml读取条目作为数据表行,所以我可以将它复制到我的数据表?

我现在有:

XElement main = XElement.Load("branches.xml");
IEnumerable<XElement> elList =
from el in main.Descendants("branch").Where(ex=>ex.Attribute("name").Value=="Branch1")
select el;
//this will return me the element where name =Branch1
//now, how would i only load this entry into my datatable ??
//this won`t work
branchesDataTable.ReadXml(XElement el in elList);

任何帮助都非常感谢..

<?xml version="1.0" encoding="utf-8"?>
<branches>
<branch name="Branch1">
    <address>Street 1, 1234, NY</address>
    <tel>0123456789</tel>
    <director>James</director>
</branch>   
<branch name="Branch2">
    <address>Street 2, 4567, NY</address>
    <tel>9876543210</tel>
    <director>Will</director>
</branch>
</branches>

1 个答案:

答案 0 :(得分:4)

branchesDataTable.ReadXml(new StringReader(new XElement("branches", elList).ToString()));