【发布时间】:2011-01-17 15:32:48
【问题描述】:
如果我有这样的课程:
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 不理会该字段呢?是否存在某种类型的 Ignore 属性,还是我必须创建一个提供这些关系的继承类?
【问题讨论】:
标签: azure azure-storage azure-table-storage