从Azure表存储中删除列

时间:2012-05-25 07:11:17

标签: azure azure-table-storage

以下是我用于从表存储中读取实体的代码片段:

public void OnReadingEntity(object sender, ReadingWritingEntityEventArgs args)
    {
        XNamespace AtomNamespace = "http://www.w3.org/2005/Atom";
        XNamespace AstoriaMetadataNamespace = "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata";

        GenericEntity entity = args.Entity as GenericEntity;
        if (entity == null)
        {
            return;
        }

        // read each property, type and value in the payload   
        var properties = args.Entity.GetType().GetProperties();
        var q = from p in args.Data.Element(AtomNamespace + "content")
                                .Element(AstoriaMetadataNamespace + "properties")
                                .Elements()
                where properties.All(pp => pp.Name != p.Name.LocalName)
                select new
                {
                    Name = UnescapePropertyName(p.Name.LocalName),
                    IsNull = string.Equals("true", p.Attribute(AstoriaMetadataNamespace + "null") == null 
                        ? null 
                        : p.Attribute(AstoriaMetadataNamespace + "null").Value, StringComparison.OrdinalIgnoreCase),
                    TypeName = p.Attribute(AstoriaMetadataNamespace + "type") == null 
                        ? null 
                        : p.Attribute(AstoriaMetadataNamespace + "type").Value,
                    p.Value
                };

        foreach (var dp in q)
        {
            entity[dp.Name] = GetTypedEdmValue(dp.TypeName, dp.Value, dp.IsNull);
        }
    }

不幸的是,这段代码将返回我删除的实体中存在的一些属性。

有人可以解释为什么会这样吗?

1 个答案:

答案 0 :(得分:1)

Azure表存储没有您在关系数据库中习惯使用的列。除了必填列之外,每行可以具有完全不同的属性。

当你说"仍然显示Up"我假设这只是你正在使用的工具呈现的数据,这使你认为它就像一个关系表。

请参阅http://msdn.microsoft.com/en-us/magazine/ff796231.aspx了解一些良好的技术背景。