gpt4 book ai didi

azure - 检索 Azure 表的属性

转载 作者:行者123 更新时间:2023-12-03 03:19:46 25 4
gpt4 key购买 nike

是否有任何程序可以了解 Azure 表实体的列名称或属性名称。我让每一行保存相同类型的数据。我只需要知道每个实体在运行时的所有属性名称。

-马亨德

最佳答案

是的,您可以使用DynamicTableEntity , DictionaryTableEntity或重写 ReadEntity 方法:

    public override void ReadEntity(IDictionary<string, EntityProperty> properties, OperationContext operationContext)
{
// Store property names somewhere.
base.ReadEntity(properties, operationContext);
}

通过重写 ReadEntity 方法,您可以将每个实体的所有属性名称存储在列表中。

注意:此答案假设您使用的是 Table Storage v2.0 SDK

关于azure - 检索 Azure 表的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14142121/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com