0

当我使用 Clumsy Leaf Table explorer 导出 TableStorage 数据时,我返回了以下 xml:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xml:base="http://x.table.core.windows.net/" 
      xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" 
      xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" 
      xmlns="http://www.w3.org/2005/Atom">
    <title type="text">TestContents</title>
    <updated />
    <link rel="self" title="TestContents" href="TestContents" />

    <entry>
        <title type="text" />
        <updated />
        <author>
            <name />
        </author>
        <link rel="edit"  />
        <content type="application/xml">
            <m:properties>
                <d:PartitionKey>010100A</d:PartitionKey>
                <d:Title>ssq</d:Title>
                <d:Type>1</d:Type>
            </m:properties>
        </content>
    </entry>
    <entry>
        <title type="text" />
        <updated />
        <author>
            <name />
        </author>
        <link rel="edit"  />
        <content type="application/xml">
            <m:properties>
                <d:PartitionKey>010100B</d:PartitionKey>
                <d:Title>yy</d:Title>
                <d:Type>1</d:Type>
            </m:properties>
        </content>
    </entry>
    <entry>
        <title type="text" />
        <updated />
        <author>
            <name />
        </author>
        <link rel="edit" />
        <content type="application/xml">
            <m:properties>
                <d:PartitionKey>010100C</d:PartitionKey>
                <d:Title>xx</d:Title>
                <d:Type>1</d:Type>
            </m:properties>
        </content>
    </entry>
</feed>

我正在使用以下代码:

XNamespace a = "http://www.w3.org/2005/Atom";
XNamespace d = "http://schemas.microsoft.com/ado/2007/08/dataservices";
XNamespace m = "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata";
XElement feed = XElement.Load(@"c:\data\contents.xml");
var titles =
    from entry in feed.Descendants(a + "entry")
    let partitionKey = entry.Element(d + "PartitionKey")
    let content = entry.Element(a + "content")
    let properties = content.Element(m + "properties")
    let title = properties.Element(d + "Title")

    select title;

foreach (var title in titles)
{
    Console.WriteLine(title.Value);
}
Console.ReadLine();

从 XML 文件中获取数据。该代码完美运行,并为我提供了所有元素的价值:

<d:Title>xxx</d:Title>

我现在也想获取 partitionKey 的值。为此,我修改了该行

select title:

select partitionKey, title;

然而,这给了我一个错误:

“不能在此范围内声明名为'title'的局部变量,因为它会给'title'赋予不同的含义,'title'已在子范围中用于表示其他内容。

有人可以帮助并建议我如何获取 partitionKey 的值以及控制台上的标题和显示。

4

2 回答 2

2

您可以使用匿名类型:

XNamespace a = "http://www.w3.org/2005/Atom";
XNamespace d = "http://schemas.microsoft.com/ado/2007/08/dataservices";
XNamespace m = "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata";
XElement feed = XElement.Load("test.xml");
var result =
    from entry in feed.Descendants(a + "entry")
    let content = entry.Element(a + "content")
    let properties = content.Element(m + "properties")
    let title = properties.Element(d + "Title")
    let partitionKey = properties.Element(d + "PartitionKey")
    select new
    {
        Title = title.Value,
        PartitionKey = partitionKey.Value,
    };

foreach (var item in result)
{
    Console.WriteLine("{0}, {1}", item.Title, item.PartitionKey);
}

或者,如果您打算将此 LINQ 查询的结果传递到当前方法之外,则首先定义一个模型:

public class Result
{
    public string Result { get; set; }
    public string PartitionKey { get; set; }
}

然后将 LINQ 查询投影到IEnumerable<Result>

select new Result
{
    Title = title,
    PartitionKey = partitionKey
};

更新:

既然您已经更新了答案并显示了您正在处理的 XML,似乎 PartitionKey 是 的子节点<m:properties>,那么您为什么要使用let partitionKey = entry.Element(d + "PartitionKey")?在示例entry中表示<entry>节点。我已经更新了我之前的代码示例以匹配您的 XML。您应该在 LINQ 查询中更加小心/一致:

let partitionKey = properties.Element(d + "PartitionKey")
于 2013-06-16T11:37:11.820 回答
0
select partitionKey, title;

不做你认为它做的事。看起来您想要返回具有两个属性的匿名类型的实例:partitionKeytitle. 为此,您必须显式声明匿名类型,即

select new { partitionKey, title };

至于您的代码行实际上是做什么的,根据编译器错误文本,我认为这只是非法语法。

注意:VB.NET 编译器更宽容一些。它确实将Select partitionKey, title视为语法糖Select New With { partitionKey, title },这是您所期望的。

于 2013-06-16T11:35:55.767 回答