我正在阅读本指南,了解如何使用 Azure 表进行数据存储。但是在本指南中并没有真正告诉您应该将文件保存在哪个文件夹中。所以我想知道是否有一些最新的指南告诉你,或者是否有人可以显示或解释代码进入哪个文件夹?
例如,我应该将此代码存储到模型文件夹中吗?
public class CustomerEntity : TableServiceEntity
{
public CustomerEntity(string lastName, string firstName)
{
this.PartitionKey = lastName;
this.RowKey = firstName;
}
public CustomerEntity() { }
public string Email { get; set; }
public string PhoneNumber { get; set; }
}