gpt4 book ai didi

azure - 如何排除属性保留在 Azure 表存储中?

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

如果我有这样的类(class):

    public class Facet : TableServiceEntity
{
public Guid ParentId { get; set; }
public string Name { get; set; }
public string Uri{ get; set; }
public Facet Parent { get; set; }
}

Parent 源自 ParentId Guid,该关系旨在由我的存储库填充。那么我该如何告诉 Azure 不去管这个字段呢?是否存在某种类型的忽略属性,或者我是否必须创建一个提供这些关系的继承类?

最佳答案

使用最新的Microsoft.WindowsAzure.Storage SDK(v6.2.0 及更高版本),属性名称已更改为 IgnorePropertyAttribute :

public class MyEntity : TableEntity
{
public string MyProperty { get; set; }

[IgnoreProperty]
public string MyIgnoredProperty { get; set; }
}

关于azure - 如何排除属性保留在 Azure 表存储中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2277247/

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